]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/DictionaryApplication.java
Theme, different color rows, dictionary_info, long click begin.
[Dictionary.git] / src / com / hughes / android / dictionary / DictionaryApplication.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.Application;
18 import android.content.SharedPreferences;
19 import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
20 import android.preference.PreferenceManager;
21 import android.util.Log;
22
23 import com.hughes.android.dictionary.engine.TransliteratorManager;
24
25 public class DictionaryApplication extends Application {
26   
27   @Override
28   public void onCreate() {
29     super.onCreate();
30     Log.d("QuickDic", "Application: onCreate");
31     TransliteratorManager.init(null);
32     
33     setTheme(getSelectedTheme().themeId);
34
35     
36     final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
37     prefs.registerOnSharedPreferenceChangeListener(new OnSharedPreferenceChangeListener() {
38       @Override
39       public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
40           String key) {
41         Log.d("THAD", "prefs changed: " + key);
42         
43         if (key.equals(getString(R.string.themeKey))) {
44           setTheme(getSelectedTheme().themeId);
45         }
46       }
47     });
48   }
49   
50   public C.Theme getSelectedTheme() {
51     final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
52     final String theme = prefs.getString(getString(R.string.themeKey), "themeLight");
53     if (theme.equals("themeLight")) {
54       return C.Theme.LIGHT;
55     } else {
56       return C.Theme.DEFAULT;
57     }
58   }
59 }