File: preferences.xml

package info (click to toggle)
glmark2 2023.01%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 13,380 kB
  • sloc: cpp: 20,680; python: 13,052; ansic: 8,595; java: 1,246; xml: 383; makefile: 41; sh: 39
file content (15 lines) | stat: -rw-r--r-- 907 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    <CheckBoxPreference android:key="run_forever"
                        android:title="@string/runForeverPreferenceTitle"
                        android:summary="@string/runForeverPreferenceSummary"
                        android:defaultValue="false" />
    <CheckBoxPreference android:key="log_debug"
                        android:title="@string/logDebugPreferenceTitle"
                        android:summary="@string/logDebugPreferenceSummary"
                        android:defaultValue="false" />
    <CheckBoxPreference android:key="show_results"
                        android:title="@string/showResultsPreferenceTitle"
                        android:summary="@string/showResultsPreferenceSummary"
                        android:defaultValue="true" />
</PreferenceScreen>