]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/AboutActivity.java
d6a5c1d06300c1fe13ea6d726ca3082da0c3968c
[Dictionary.git] / src / com / hughes / android / dictionary / AboutActivity.java
1 // Copyright 2011 Google Inc. All Rights Reserved.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 package com.hughes.android.dictionary;
16
17 import android.app.Activity;
18 import android.content.pm.PackageInfo;
19 import android.content.pm.PackageManager;
20 import android.os.Bundle;
21 import android.widget.TextView;
22
23 public final class AboutActivity extends Activity {
24
25     public static final String CURRENT_DICT_INFO = "currentDictInfo";
26
27     /** Called when the activity is first created. */
28     @Override
29     public void onCreate(final Bundle savedInstanceState) {
30         DictionaryApplication.INSTANCE.init(getApplicationContext());
31         setTheme(DictionaryApplication.INSTANCE.getSelectedTheme().themeId);
32
33         super.onCreate(savedInstanceState);
34         setContentView(R.layout.about_activity);
35         String ver = "???";
36         try {
37             PackageManager pm = getPackageManager();
38             if (pm != null) {
39                 PackageInfo p = pm.getPackageInfo(getPackageName(), 0);
40                 ver = p.versionName + " (ID " + p.versionCode + ")";
41             }
42         } catch (Exception e) {
43         }
44         TextView titleView = (TextView)findViewById(R.id.titleText);
45         titleView.setText("QuickDic " + ver);
46     }
47
48 }