wangzhibo
4 天以前 ae6f40460dcd56af6c5f60ba52c883854c3bac55
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<androidx.preference.PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto">
    <PreferenceCategory
        android:key="pref_key_header_banglejs_activity"
        android:title="@string/Activity">
 
        <Preference
            android:icon="@drawable/ic_refresh"
            android:key="pref_banglejs_activity_full_sync_trigger"
            android:summary="@string/pref_activity_full_sync_trigger_summary"
            android:title="@string/pref_activity_full_sync_trigger_title" />
 
        <!-- dummy preference, just to trigger customizer notifications -->
        <EditTextPreference
            android:defaultValue="NOT_RUNNING"
            android:enabled="false"
            android:key="pref_banglejs_activity_full_sync_status"
            android:shouldDisableView="false"
            android:title="pref_banglejs_activity_full_sync_status"
            app:isPreferenceVisible="false" />
    </PreferenceCategory>
</androidx.preference.PreferenceScreen>