• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2007 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<LinearLayout
18    xmlns:android="http://schemas.android.com/apk/res/android"
19    android:orientation="vertical"
20    android:layout_width="match_parent"
21    android:layout_height="match_parent"
22    android:paddingStart="16dp"
23    android:paddingEnd="16dp"
24    android:paddingTop="16dp"
25    android:paddingBottom="16dp">
26
27    <CheckBox
28        android:id="@+id/enabled"
29        android:layout_width="wrap_content"
30        android:layout_height="wrap_content"
31        android:text="@string/enabled" />
32
33    <SeekBar
34        android:id="@+id/seekMin"
35        android:layout_width="match_parent"
36        android:layout_height="wrap_content"
37        android:max="100"
38        android:progress="0"
39        android:enabled="false" />
40
41    <SeekBar
42        android:id="@+id/seekMax"
43        android:layout_width="match_parent"
44        android:layout_height="wrap_content"
45        android:max="100"
46        android:progress="100"
47        android:enabled="false" />
48
49    <SeekBar
50        android:id="@+id/seek"
51        android:layout_width="match_parent"
52        android:layout_height="wrap_content"
53        android:max="100"
54        android:progress="50"
55        android:secondaryProgress="75" />
56
57    <TextView
58        android:id="@+id/progress"
59       	android:layout_width="match_parent"
60        android:layout_height="wrap_content" />
61
62    <TextView
63        android:id="@+id/tracking"
64       	android:layout_width="match_parent"
65        android:layout_height="wrap_content" />
66</LinearLayout>
67