aboutsummaryrefslogtreecommitdiffstats
path: root/res/xml/preference.xml
blob: bcf540a76ee8c6076850b772a45ce8a09c794701 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>

<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <PreferenceCategory android:title="表示設定">
        <Preference
            android:title="文字サイズ"
            android:key="@string/key_text_size"
            android:defaultValue="10"/>
        <!--<SwitchPreference-->
        <!--android:defaultValue="false"-->
        <!--android:key="@string/keyTheme"-->
        <!--android:summary="再起動後に有効になります"-->
        <!--android:title="テーマ切り替え"-->
        <!--android:switchTextOff="Light"-->
        <!--android:switchTextOn="Dark"/>-->
        <SwitchPreference
            android:title="モールス解読"
            android:summaryOn="有効"
            android:summaryOff="無効"
            android:key="@string/key_morse"
            android:defaultValue="true"/>
        <ListPreference
            android:title="名前の形式"
            android:summary="お好きなものを選んでください"
            android:dialogTitle="名前の形式"
            android:key="@string/key_namestyle"
            android:entries="@array/entry_namestyle"
            android:entryValues="@array/entryvalues_namestyle"/>
        <SwitchPreference
            android:title="同じツイートのRT"
            android:summaryOn="表示する"
            android:summaryOff="表示しない"
            android:defaultValue="true"
            android:key="@string/key_retweet_visibility"/>
    </PreferenceCategory>
    <PreferenceCategory android:title="動作設定">
        <SwitchPreference
            android:title="投稿後の動作"
            android:summaryOn="ホームに戻る"
            android:summaryOff="何もしない"
            android:key="@string/key_on_submit"
            android:defaultValue="true"/>
        <SwitchPreference
            android:title="あんふぁぼ通知"
            android:summaryOn="有効"
            android:summaryOff="無効"
            android:key="@string/key_unfav_notify"
            android:defaultValue="false"/>
        <SwitchPreference
            android:title="投稿画面表示時"
            android:summaryOn="IMEを開く"
            android:summaryOff="IMEを開かない"
            android:key="@string/key_open_ime"
            android:defaultValue="true"/>
        <SwitchPreference
            android:title="確認ダイアログ"
            android:summaryOn="有効"
            android:summaryOff="無効"
            android:key="@string/key_confirm"
            android:defaultValue="true"/>
        <SwitchPreference
            android:title="検索にRTを含める"
            android:summaryOn="有効"
            android:summaryOff="無効"
            android:key="@string/key_search_retweet"
            android:defaultValue="false"/>
        <Preference
            android:title="読み込み件数"
            android:summary="引っ張って更新"
            android:key="@string/key_request_count"
            android:defaultValue="20"/>
    </PreferenceCategory>
    <PreferenceCategory android:title="その他">
        <Preference
            android:title="認証情報を削除"
            android:summary="再起動後に認証してね"
            android:key="@string/key_clear_accounts"/>
        <Preference
            android:title="このアプリについて"
            android:key="@string/key_app_info"/>
        <Preference
            android:title="オープンソースライセンス"
            android:key="@string/key_license_notices"/>
    </PreferenceCategory>

</PreferenceScreen>