pref.xml 3.15 KB
Newer Older
Lee Jaebin committed
1 2 3
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >

4 5 6 7
    <PreferenceCategory
        android:key="account_set"
        android:title="@string/account"
        android:layout="@layout/custom_preference_category">
Lee Jaebin committed
8 9 10
        <PreferenceScreen
            android:key="accountPath"
            android:summary="--"
11 12
            android:title="@string/contractor"
            android:layout="@layout/custom_preference_screen"></PreferenceScreen>
Lee Jaebin committed
13 14 15
        <PreferenceScreen
            android:key="loginid"
            android:summary="--"
16 17
            android:title="@string/logid"
            android:layout="@layout/custom_preference_screen"></PreferenceScreen>
Lee Jaebin committed
18 19 20
        <PreferenceScreen
            android:key="lastLogin"
            android:summary="--"
21 22
            android:title="@string/last_login"
            android:layout="@layout/custom_preference_screen"></PreferenceScreen>
Lee Jaebin committed
23 24 25
        <PreferenceScreen
            android:key="passwordChange"
            android:summary="@string/password_change_summary"
26 27
            android:title="@string/pwd_change"
            android:layout="@layout/custom_preference_screen"></PreferenceScreen>
Lee Jaebin committed
28 29 30
        <PreferenceScreen
            android:key="logout"
            android:summary="@string/logout_summary"
31 32
            android:title="@string/logout"
            android:layout="@layout/custom_preference_screen"></PreferenceScreen>
Lee Jaebin committed
33
    </PreferenceCategory>
34
    <PreferenceCategory android:title="@string/log_info" android:key="log_info" android:layout="@layout/custom_preference_category">
Lee Jaebin committed
35 36 37 38
        <CheckBoxPreference
            android:defaultValue="true"
            android:key="errorSendEnable"
            android:summary="@string/send_error"
39 40 41
            android:title="@string/send_error_title"
            android:layout="@layout/custom_preference_screen"
            android:widgetLayout="@layout/custom_preference_checkbox"/>
Lee Jaebin committed
42 43 44
        <PreferenceScreen
            android:key="export"
            android:summary="@string/export"
45 46
            android:title="@string/export_title"
            android:layout="@layout/custom_preference_screen">
Lee Jaebin committed
47 48
        </PreferenceScreen>
    </PreferenceCategory>
49
    <PreferenceCategory android:title="@string/app_info" android:key="app_info" android:layout="@layout/custom_preference_category">
Lee Jaebin committed
50 51
        <PreferenceScreen
            android:key="aboutABook"
52 53
            android:title="@string/about_app"
            android:layout="@layout/custom_preference_screen">
Lee Jaebin committed
54 55 56
        </PreferenceScreen>
        <PreferenceScreen
            android:key="licenseInfo"
57 58
            android:title="@string/licence_info"
            android:layout="@layout/custom_preference_screen">
Lee Jaebin committed
59 60 61
        </PreferenceScreen>
        <PreferenceScreen
            android:key="checkAppUpdate"
62 63
            android:title="@string/check_app_update"
            android:layout="@layout/custom_preference_screen">
Lee Jaebin committed
64 65 66
        </PreferenceScreen>
        <PreferenceScreen
            android:key="abookCheckManual"
67 68
            android:title="@string/operation_manual"
            android:layout="@layout/custom_preference_screen">
Lee Jaebin committed
69 70 71
        </PreferenceScreen>
    </PreferenceCategory>
</PreferenceScreen>