Blame view

app/src/main/res/xml/settings.xml 1.05 KB
7f095a929   chudinhbka@gmail.com   Create GIT Project
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
  <?xml version="1.0" encoding="utf-8"?>
  <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
  
      <Preference
          android:key="goal"
          android:title="@string/goal"/>
      <Preference
          android:key="stepsize"
          android:title="@string/step_size"/>
      <Preference
          android:key="account"
          android:summary="@string/sign_in"
          android:title="@string/account"/>
  
      <CheckBoxPreference
          android:defaultValue="true"
          android:key="notification"
          android:title="@string/notification"/>
  
      <CheckBoxPreference
          android:defaultValue="false"
          android:key="pause_on_power"
          android:title="@string/pause_on_power_title"
          android:summary="@string/pause_on_power_summary"/>
  
      <Preference
          android:key="export"
          android:summary="@string/export_summary"
          android:title="@string/export_title"/>
      <Preference
          android:key="import"
          android:summary="@string/import_summary"
          android:title="@string/import_title"/>
  
  </PreferenceScreen>