aboutsummaryrefslogtreecommitdiffstats
path: root/res/xml/preference.xml
blob: 07e6c404d5d656f69c7a91915e676c8ddbeb8d11 (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
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">

    <PreferenceCategory android:title="表示設定">
        <Preference
                android:defaultValue="10"
                android:key="@string/key_setting_textSize"
                android:summary="文字のサイズだよ"
                android:title="文字サイズ"/>
        <SwitchPreference
                android:defaultValue="true"
                android:key="@string/key_setting_morse"
                android:summaryOff="無効"
                android:summaryOn="有効"
                android:title="モールス解読"/>

        <ListPreference
                android:dialogTitle="名前形式"
                android:entries="@array/entry_namestyle"
                android:entryValues="@array/entryvalues_namestyle"
                android:key="@string/key_setting_namestyle"
                android:summary="お好きなものを選んでください"
                android:title="名前の形式"/>
        <SwitchPreference
                android:key="@string/key_setting_read_retweet"
                android:summaryOn="表示する"
                android:title="同じツイートのRT"
                android:summaryOff="表示しない"
                android:defaultValue="true"/>
    </PreferenceCategory>
    <PreferenceCategory android:title="動作設定">
        <SwitchPreference
                android:defaultValue="true"
                android:key="@string/key_setting_aftersubmit"
                android:summaryOff="そのまま"
                android:summaryOn="ホームに戻る"
                android:title="投稿後"/>
        <SwitchPreference
                android:defaultValue="false"
                android:key="@string/key_setting_notice_unfav"
                android:summaryOff="無効"
                android:summaryOn="有効"
                android:title="あんふぁぼ通知"/>
        <SwitchPreference
                android:defaultValue="true"
                android:key="@string/key_setting_open_ime"
                android:summaryOff="IMEを開かない"
                android:summaryOn="IMEを開く"
                android:title="投稿画面表示時"/>
        <SwitchPreference
                android:defaultValue="true"
                android:key="@string/key_setting_confirm_dialog"
                android:summaryOff="無効"
                android:summaryOn="有効"
                android:title="確認ダイアログ"/>
        <SwitchPreference
                android:title="リストTL自動読み込み"
                android:key="@string/key_setting_listload"
                android:summaryOff="無効"
                android:summaryOn="有効"
                android:defaultValue="false"/>
    </PreferenceCategory>
    <PreferenceCategory android:title="その他">
        <Preference
                android:key="@string/key_setting_delete_accounts"
                android:summary="再起動後に認証してね"
                android:title="認証情報を削除"/>
        <Preference
                android:key="@string/app_info"
                android:title="このアプリについて"
                />
        <Preference
                android:key="@string/license_notices"
                android:title="オープンソースライセンス"/>

    </PreferenceCategory>

</PreferenceScreen>