/* * Copyright 2011-2013 the original author or authors. * * This program 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. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. */ package de.schildbach.wallet.digitalcoin.ui; import android.content.Intent; import android.net.Uri; import android.os.Bundle; import android.preference.Preference; import android.preference.PreferenceScreen; import com.actionbarsherlock.app.ActionBar; import com.actionbarsherlock.app.SherlockPreferenceActivity; import com.actionbarsherlock.view.MenuItem; import com.google.digitalcoin.core.VersionMessage; import de.schildbach.wallet.digitalcoin.Constants; import de.schildbach.wallet.digitalcoin.WalletApplication; import de.schildbach.wallet.digitalcoin.R; /** * @author Andreas Schildbach */ public final class AboutActivity extends SherlockPreferenceActivity { private static final String KEY_ABOUT_VERSION = "about_version"; private static final String KEY_ABOUT_LICENSE = "about_license"; private static final String KEY_ABOUT_SOURCE = "about_source"; private static final String KEY_ABOUT_CREDITS_LITECOINJ = "about_credits_digitalcoinj"; private static final String KEY_ABOUT_CREDITS_ZXING = "about_credits_zxing"; private static final String KEY_ABOUT_CREDITS_ICON = "about_credits_icon"; private static final String KEY_ABOUT_AUTHOR_TWITTER = "about_author_twitter"; private static final String KEY_ABOUT_AUTHOR_GOOGLEPLUS = "about_author_googleplus"; private static final String KEY_ABOUT_MARKET_APP = "about_market_app"; private static final String KEY_ABOUT_MARKET_PUBLISHER = "about_market_publisher"; @Override protected void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState); addPreferencesFromResource(R.xml.about); final ActionBar actionBar = getSupportActionBar(); actionBar.setDisplayHomeAsUpEnabled(true); findPreference(KEY_ABOUT_VERSION).setSummary(((WalletApplication) getApplication()).applicationVersionName()); findPreference(KEY_ABOUT_LICENSE).setSummary(Constants.LICENSE_URL); findPreference(KEY_ABOUT_SOURCE).setSummary(Constants.SOURCE_URL); findPreference(KEY_ABOUT_CREDITS_LITECOINJ).setTitle(getString(R.string.about_credits_Digitalcoinj_title, VersionMessage.LITECOINJ_VERSION)); findPreference(KEY_ABOUT_CREDITS_LITECOINJ).setSummary(Constants.CREDITS_LITECOINJ_URL); findPreference(KEY_ABOUT_CREDITS_ZXING).setSummary(Constants.CREDITS_ZXING_URL); findPreference(KEY_ABOUT_CREDITS_ICON).setSummary(Constants.CREDITS_ICON_URL); findPreference(KEY_ABOUT_MARKET_APP).setSummary(String.format(Constants.MARKET_APP_URL, getPackageName())); findPreference(KEY_ABOUT_MARKET_PUBLISHER).setSummary(Constants.MARKET_PUBLISHER_URL); } @Override public boolean onOptionsItemSelected(final MenuItem item) { switch (item.getItemId()) { case android.R.id.home: finish(); return true; } return super.onOptionsItemSelected(item); } @Override public boolean onPreferenceTreeClick(final PreferenceScreen preferenceScreen, final Preference preference) { final String key = preference.getKey(); if (KEY_ABOUT_LICENSE.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.LICENSE_URL))); finish(); } else if (KEY_ABOUT_SOURCE.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.SOURCE_URL))); finish(); } else if (KEY_ABOUT_CREDITS_LITECOINJ.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.CREDITS_LITECOINJ_URL))); finish(); } else if (KEY_ABOUT_CREDITS_ZXING.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.CREDITS_ZXING_URL))); finish(); } else if (KEY_ABOUT_CREDITS_ICON.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.CREDITS_ICON_URL))); finish(); } else if (KEY_ABOUT_AUTHOR_TWITTER.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.AUTHOR_TWITTER_URL))); finish(); } else if (KEY_ABOUT_AUTHOR_GOOGLEPLUS.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.AUTHOR_GOOGLEPLUS_URL))); finish(); } else if (KEY_ABOUT_MARKET_APP.equals(key)) { final Intent marketIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(String.format(Constants.MARKET_APP_URL, getPackageName()))); if (getPackageManager().resolveActivity(marketIntent, 0) != null) startActivity(marketIntent); else startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(String.format(Constants.WEBMARKET_APP_URL, getPackageName())))); finish(); } else if (KEY_ABOUT_MARKET_PUBLISHER.equals(key)) { startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.MARKET_PUBLISHER_URL))); finish(); } return false; } }