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