]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/AboutActivity.java
Fix trailing whitespace and DOS linebreaks.
[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         setTheme(((DictionaryApplication) getApplication()).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 e) {
42         }
43         TextView titleView = (TextView)findViewById(R.id.titleText);
44         titleView.setText("QuickDic " + ver);
45     }
46
47 }