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> */*www . j a va 2s. co 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 org.birthdayadapter.R; import org.birthdayadapter.util.Constants; import org.birthdayadapter.util.Log; import org.sufficientlysecure.htmltextview.HtmlTextView; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.content.pm.PackageManager.NameNotFoundException; import android.os.Bundle; import android.support.v4.app.FragmentActivity; import android.widget.TextView; public class HelpActivityV8 extends FragmentActivity { /** * Instantiate View for this Activity */ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.help_activity_v8); TextView versionText = (TextView) findViewById(R.id.help_about_version); versionText.setText(getString(R.string.about_version) + " " + getVersion()); HtmlTextView aboutTextView = (HtmlTextView) findViewById(R.id.help_about_text); HtmlTextView helpTextView = (HtmlTextView) findViewById(R.id.help_help_text); // load html into textviews aboutTextView.setHtmlFromRawResource(this, R.raw.about); helpTextView.setHtmlFromRawResource(this, R.raw.help); // no flickering when clicking textview for Android < 4 aboutTextView.setTextColor(getResources().getColor( android.R.color.secondary_text_dark_nodisable)); helpTextView.setTextColor(getResources().getColor( android.R.color.secondary_text_dark_nodisable)); } /** * Get the current package version. * * @return The current version. */ private String getVersion() { String result = ""; try { PackageManager manager = this.getPackageManager(); PackageInfo info = manager.getPackageInfo(this.getPackageName(), 0); result = String.format("%s (%s)", info.versionName, info.versionCode); } catch (NameNotFoundException e) { Log.w(Constants.TAG, "Unable to get application version", e); result = "Unable to get application version."; } return result; } }