blob: 9168fc9a4744621324ad72de3ef5a40c3b07937b [file] [log] [blame]
The Android Open Source Project053d5092009-03-15 21:40:26 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
Junichi Monma59aefa22012-04-24 16:13:54 +09003 Copyright (C) 2008-2012 OMRON SOFTWARE Co., Ltd.
The Android Open Source Project053d5092009-03-15 21:40:26 -07004
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
18 android:key="openwnn_pref_ja">
19
20 <PreferenceCategory android:title="@string/preference_key_setting_menu">
21 <CheckBoxPreference android:key="key_sound"
22 android:title="@string/preference_key_sound_title"
23 android:summary="@string/preference_key_sound_summary"/>
24 <CheckBoxPreference android:key="key_vibration"
25 android:title="@string/preference_key_vibration_title"
Junichi Monma59aefa22012-04-24 16:13:54 +090026 android:summary="@string/preference_key_vibration_summary"
27 android:defaultValue="true" />
The Android Open Source Project053d5092009-03-15 21:40:26 -070028 <CheckBoxPreference android:key="popup_preview"
29 android:title="@string/preference_preview_title"
30 android:summary="@string/preference_preview_summary"
31 android:defaultValue="true" />
Daisuke Miyakawaf96267a2009-03-24 19:47:10 -070032 <CheckBoxPreference android:key="auto_caps"
33 android:title="@string/preference_auto_caps_title"
34 android:summary="@string/preference_auto_caps_summary"
35 android:defaultValue="true" />
36 <jp.co.omronsoft.openwnn.JAJP.KeyboardListPreferenceJAJP
37 android:key="keyboard_skin"
38 android:title="@string/preference_keyboard_skin_title"
39 android:summary="@string/preference_keyboard_skin_summary"
40 android:entries="@array/keyboard_skin"
41 android:entryValues="@array/keyboard_skin_id"
Daisuke Miyakawad56eddf2009-03-27 19:33:19 -070042 android:defaultValue="keyboard_android_default" />
The Android Open Source Project053d5092009-03-15 21:40:26 -070043 </PreferenceCategory>
44
Junichi Monma59aefa22012-04-24 16:13:54 +090045 <PreferenceCategory android:title="@string/preference_conversion_menu_ja">
46 <CheckBoxPreference android:key="opt_enable_learning_ja"
47 android:title="@string/preference_input_learning_title_ja"
The Android Open Source Project053d5092009-03-15 21:40:26 -070048 android:summary="@string/preference_input_learning_summary"
49 android:defaultValue="true" />
Junichi Monma59aefa22012-04-24 16:13:54 +090050 <CheckBoxPreference android:key="opt_prediction_ja"
51 android:title="@string/preference_prediction_title_ja"
The Android Open Source Project053d5092009-03-15 21:40:26 -070052 android:summary="@string/preference_prediction_summary"
53 android:defaultValue="true" />
Junichi Monma59aefa22012-04-24 16:13:54 +090054 </PreferenceCategory>
55
56 <PreferenceCategory android:title="@string/preference_conversion_menu_en">
57 <CheckBoxPreference android:key="opt_enable_learning_en"
58 android:title="@string/preference_input_learning_title_en"
59 android:summary="@string/preference_input_learning_summary"
60 android:defaultValue="true" />
61 <CheckBoxPreference android:key="opt_prediction_en"
62 android:title="@string/preference_prediction_title_en"
63 android:summary="@string/preference_prediction_summary"
64 android:defaultValue="false" />
65 <CheckBoxPreference android:key="opt_spell_correction_en"
66 android:title="@string/preference_correct_spell_title_en"
The Android Open Source Project053d5092009-03-15 21:40:26 -070067 android:summary="@string/preference_correct_spell_summary"
Daisuke Miyakawaf96267a2009-03-24 19:47:10 -070068 android:defaultValue="true"
Junichi Monma59aefa22012-04-24 16:13:54 +090069 android:dependency="opt_prediction_en" />
The Android Open Source Project053d5092009-03-15 21:40:26 -070070 </PreferenceCategory>
71
72 <PreferenceCategory android:title="@string/preference_dictionary_menu">
zhuqk0617@thundersoft.com8d4541f2015-04-10 14:18:43 +080073 <PreferenceScreen android:key="user_dictionary_edit_words_ja"
The Android Open Source Project053d5092009-03-15 21:40:26 -070074 android:title="@string/preference_dictionary_menu_ja"
75 android:summary="@string/preference_user_dictionary_edit_words_summary_ja"
76 android:persistent="false">
77 <intent android:action="android.intent.action.MAIN"
78 android:targetPackage="jp.co.omronsoft.openwnn"
79 android:targetClass="jp.co.omronsoft.openwnn.JAJP.UserDictionaryToolsListJAJP" />
80 </PreferenceScreen>
81
zhuqk0617@thundersoft.com8d4541f2015-04-10 14:18:43 +080082 <PreferenceScreen android:key="user_dictionary_edit_words_en"
The Android Open Source Project053d5092009-03-15 21:40:26 -070083 android:title="@string/preference_dictionary_menu_en"
84 android:summary="@string/preference_user_dictionary_edit_words_summary_en"
85 android:persistent="false">
86 <intent android:action="android.intent.action.MAIN"
87 android:targetPackage="jp.co.omronsoft.openwnn"
88 android:targetClass="jp.co.omronsoft.openwnn.EN.UserDictionaryToolsListEN" />
89 </PreferenceScreen>
90
91 <jp.co.omronsoft.openwnn.JAJP.ClearLearnDictionaryDialogPreferenceJAJP
92 android:key="clear_learn_dictionary"
93 android:title="@string/preference_user_dictionary_clear_learning_title"
94 android:summary="@string/preference_user_dictionary_clear_learning_summary"
95 android:dialogMessage="@string/dialog_clear_learning_dictionary_message"
96 android:positiveButtonText="@string/dialog_button_ok"
97 android:negativeButtonText="@string/dialog_button_cancel"/>
98
99 </PreferenceCategory>
Daisuke Miyakawaf96267a2009-03-24 19:47:10 -0700100
The Android Open Source Project053d5092009-03-15 21:40:26 -0700101 <PreferenceCategory android:title="@string/preference_aboutime_menu">
102 <Preference android:key="openwnn_version"
103 style="?android:preferenceInformationStyle"
104 android:title="@string/openwnn_japanese"
105 android:summary="@string/openwnn_japanese_copyright" />
106 </PreferenceCategory>
107
108</PreferenceScreen>
109