Blame view

app/src/main/res/xml/pref_general.xml 865 Bytes
f905cc410   赵康   SDK has update to...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
  <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  
      <SwitchPreference
          android:defaultValue="true"
          android:key="key_mode"
          android:summary="@string/pref_description_mode"
          android:title="@string/pref_title_mode"/>
  
  
      <!-- NOTE: Hide buttons to simplify the UI. Users can touch outside the dialog to
           dismiss it. -->
      <!--NOTE: ListPreference's summary should be set to its value by the activity code. -->
      <ListPreference
          android:defaultValue="V3"
          android:entries="@array/pref_payment_version_titles"
          android:entryValues="@array/pref_payment_version_values"
          android:key="key_pay_version"
          android:negativeButtonText="@null"
          android:positiveButtonText="@null"
          android:title="@string/pref_title_payment_version"/>
  
  </PreferenceScreen>