Back to project page birthday-adapter.
The source code is released under:
GNU General Public License
If you think the Android project birthday-adapter 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 (C) 2012-2013 Dominik Schrmann <dominik@dominikschuermann.de> *//from w w w . j a va 2 s .c o m * This file is part of Birthday Adapter. * * Birthday Adapter is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Birthday Adapter is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Birthday Adapter. If not, see <http://www.gnu.org/licenses/>. * */ package org.birthdayadapter.ui; import android.content.Intent; import android.net.Uri; import android.preference.Preference; import org.birthdayadapter.BuildConfig; import org.birthdayadapter.R; import org.birthdayadapter.util.Constants; import android.annotation.TargetApi; import android.os.Build; import android.os.Bundle; import android.preference.PreferenceFragment; @TargetApi(Build.VERSION_CODES.ICE_CREAM_SANDWICH) public class PreferencesFragment extends PreferenceFragment { BaseActivity mActivity; private Preference mBuyFull; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mActivity = (BaseActivity) getActivity(); // save prefs here getPreferenceManager().setSharedPreferencesName(Constants.PREFS_NAME); // load preferences from xml addPreferencesFromResource(R.xml.pref_preferences); if (!BuildConfig.FULL_VERSION) { mBuyFull = (Preference) findPreference(getString(R.string.pref_buy_full_key)); mBuyFull.setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() { @Override public boolean onPreferenceClick(Preference preference) { try { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("market://details?id=" + Constants.FULL_PACKAGE_NAME))); } catch (android.content.ActivityNotFoundException anfe) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("http://play.google.com/store/apps/details?id=" + Constants.FULL_PACKAGE_NAME))); } return false; } }); } } @Override public void onResume() { super.onResume(); // Set up a listener whenever a key changes getPreferenceScreen().getSharedPreferences().registerOnSharedPreferenceChangeListener( mActivity.mySharedPreferenceChangeListener); } @Override public void onPause() { super.onPause(); // Unregister the listener whenever a key changes getPreferenceScreen().getSharedPreferences().unregisterOnSharedPreferenceChangeListener( mActivity.mySharedPreferenceChangeListener); } }