/* * 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 org.thialfihar.android.apg.ui; import org.thialfihar.android.apg.R; import org.thialfihar.android.apg.Constants; import android.app.Activity; import android.content.pm.PackageInfo; import android.content.pm.PackageManager; import android.content.pm.PackageManager.NameNotFoundException; import android.os.Bundle; import android.util.Log; import android.widget.TextView; public class AboutActivity extends Activity { Activity mActivity; /** * Instantiate View for this Activity */ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.about_activity); mActivity = this; TextView versionText = (TextView) findViewById(R.id.about_version); versionText.setText(getString(R.string.about_version) + " " + getVersion()); } /** * Get the current package version. * * @return The current version. */ private String getVersion() { String result = ""; try { PackageManager manager = mActivity.getPackageManager(); PackageInfo info = manager.getPackageInfo(mActivity.getPackageName(), 0); result = String.format("%s (%s)", info.versionName, info.versionCode); } catch (NameNotFoundException e) { Log.w(Constants.TAG, "Unable to get application version: " + e.getMessage()); result = "Unable to get application version."; } return result; } }