Blame view

app/src/main/res/xml/pref_param.xml 1.24 KB
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
23
24
25
26
27
28
29
  <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  
      <EditTextPreference
          android:defaultValue="100"
          android:key="key_appid"
          android:summary="@string/pref_description_appid"
          android:title="@string/pref_title_appid"/>
  
      <!-- NOTE: EditTextPreference accepts EditText attributes. -->
      <!-- NOTE: EditTextPreference's summary should be set to its value by the activity code. -->
      <EditTextPreference
          android:defaultValue="1000"
          android:key="key_channel"
          android:summary="@string/pref_description_channel"
          android:title="@string/pref_title_channel"/>
  
      <!-- 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="-1"-->
      <!--android:entries="@array/pref_example_list_titles"-->
      <!--android:entryValues="@array/pref_example_list_values"-->
      <!--android:key="example_list"-->
      <!--android:negativeButtonText="@null"-->
      <!--android:positiveButtonText="@null"-->
      <!--android:title="@string/pref_title_add_friends_to_messages"/>-->
  
  </PreferenceScreen>