Back to project page device-frame-generator.
The source code is released under:
Apache License
If you think the Android project device-frame-generator listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2014 Prateek Srivastava (@f2prateek) *// www. j a v a 2 s . c o m * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.f2prateek.dfg.ui.fragments; import android.app.DialogFragment; import android.content.Intent; import android.content.pm.PackageInfo; import android.net.Uri; import android.os.Bundle; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import butterknife.ButterKnife; import butterknife.InjectView; import butterknife.OnClick; import com.f2prateek.dfg.AppConstants; import com.f2prateek.dfg.DFGApplication; import com.f2prateek.dfg.R; import javax.inject.Inject; public class AboutFragment extends DialogFragment { @Inject PackageInfo packageInfo; @InjectView(R.id.tv_version_number) TextView versionNumberText; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setStyle(STYLE_NO_TITLE, getTheme()); ((DFGApplication) getActivity().getApplication()).inject(this); } @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View v = inflater.inflate(R.layout.fragment_about, container, false); ButterKnife.inject(this, v); versionNumberText.setText(String.valueOf(packageInfo.versionName)); getDialog().setTitle(R.string.about); return v; } @OnClick({ R.id.iv_app_logo, R.id.tv_version_number, R.id.tv_gplus, R.id.tv_twitter, R.id.tv_designer }) public void openUrl(View v) { switch (v.getId()) { case R.id.iv_app_logo: openUrl(AppConstants.MARKET_URL); break; case R.id.tv_version_number: openUrl("http://f2prateek.com/android-device-frame-generator/"); break; case R.id.tv_gplus: openUrl("https://plus.google.com/+PrateekSrivastava/posts"); break; case R.id.tv_twitter: openUrl("https://twitter.com/f2prateek"); break; case R.id.tv_designer: openUrl("http://androiduiux.com/"); break; default: break; } } void openUrl(String url) { Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url)); startActivity(intent); } }