]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/AboutActivity.java
Fix issues noted by lint tools.
[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     /** Called when the activity is first created. */
26     @Override
27     public void onCreate(final Bundle savedInstanceState) {
28         DictionaryApplication.INSTANCE.init(getApplicationContext());
29         setTheme(DictionaryApplication.INSTANCE.getSelectedTheme().themeId);
30
31         super.onCreate(savedInstanceState);
32         setContentView(R.layout.about_activity);
33         String ver = "???";
34         try {
35             PackageManager pm = getPackageManager();
36             if (pm != null) {
37                 PackageInfo p = pm.getPackageInfo(getPackageName(), 0);
38                 ver = p.versionName + " (ID " + p.versionCode + ")";
39             }
40         } catch (Exception e) {
41         }
42         TextView titleView = findViewById(R.id.titleText);
43         titleView.setText("QuickDic " + ver);
44     }
45
46 }