ee1f0e29c207f131d15ee53a00e336c525419e51
[zxing.git] / android / src / com / google / zxing / client / android / PreferencesActivity.java
1 /*
2  * Copyright (C) 2008 ZXing authors
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package com.google.zxing.client.android;
18
19 import android.content.SharedPreferences;
20 import android.content.SharedPreferences.OnSharedPreferenceChangeListener;
21 import android.os.Bundle;
22 import android.preference.CheckBoxPreference;
23 import android.preference.PreferenceScreen;
24
25 public final class PreferencesActivity extends android.preference.PreferenceActivity
26     implements OnSharedPreferenceChangeListener {
27
28   static final String KEY_DECODE_1D = "preferences_decode_1D";
29   static final String KEY_DECODE_QR = "preferences_decode_QR";
30   static final String KEY_PLAY_BEEP = "preferences_play_beep";
31   static final String KEY_HELP_VERSION_SHOWN = "preferences_help_version_shown";
32
33   CheckBoxPreference mDecode1D;
34   CheckBoxPreference mDecodeQR;
35   CheckBoxPreference mPlayBeep;
36
37   @Override
38   protected void onCreate(Bundle icicle) {
39     super.onCreate(icicle);
40     addPreferencesFromResource(R.xml.preferences);
41
42     PreferenceScreen preferences = getPreferenceScreen();
43     preferences.getSharedPreferences().registerOnSharedPreferenceChangeListener(this);
44     mDecode1D = (CheckBoxPreference) preferences.findPreference(KEY_DECODE_1D);
45     mDecodeQR = (CheckBoxPreference) preferences.findPreference(KEY_DECODE_QR);
46     mPlayBeep = (CheckBoxPreference) preferences.findPreference(KEY_PLAY_BEEP);
47   }
48
49   // Prevent the user from turning off both decode options
50   public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key) {
51     if (key.equals(KEY_DECODE_1D)) {
52       mDecodeQR.setEnabled(mDecode1D.isChecked());
53       mDecodeQR.setChecked(true);
54     } else if (key.equals(KEY_DECODE_QR)) {
55       mDecode1D.setEnabled(mDecodeQR.isChecked());
56       mDecode1D.setChecked(true);
57     }
58   }
59
60 }