]> gitweb.fperrin.net Git - Dictionary.git/blob - src/com/hughes/android/dictionary/DictionaryApplication.java
Added Apache license.
[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 com.hughes.android.dictionary.engine.TransliteratorManager;
18
19 import android.app.Activity;
20 import android.app.Application;
21 import android.content.SharedPreferences;
22 import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
23 import android.preference.PreferenceManager;
24 import android.util.Log;
25
26 public class DictionaryApplication extends Application {
27   
28   @Override
29   public void onCreate() {
30     super.onCreate();
31     Log.d("QuickDic", "Application: onCreate");
32     TransliteratorManager.init(null);
33     
34     final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
35     prefs.registerOnSharedPreferenceChangeListener(new OnSharedPreferenceChangeListener() {
36       @Override
37       public void onSharedPreferenceChanged(SharedPreferences sharedPreferences,
38           String key) {
39         Log.d("THAD", "prefs changed: " + key);
40       }
41     });
42   }
43   
44   public void applyTheme(final Activity activity) {
45     final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
46     final String theme = prefs.getString(getString(R.string.themeKey), "themeLight");
47     Log.d("QuickDic", "Setting theme to: " + theme);
48     if (theme.equals("themeLight")) {
49       activity.setTheme(R.style.Theme_Light);
50     } else {
51       activity.setTheme(R.style.Theme_Default);      
52     }
53   }
54 }