summaryrefslogtreecommitdiff
path: root/LoopbackApp/app/src/main/res/layout/settings_picker.xml
diff options
context:
space:
mode:
Diffstat (limited to 'LoopbackApp/app/src/main/res/layout/settings_picker.xml')
-rw-r--r--LoopbackApp/app/src/main/res/layout/settings_picker.xml27
1 files changed, 21 insertions, 6 deletions
diff --git a/LoopbackApp/app/src/main/res/layout/settings_picker.xml b/LoopbackApp/app/src/main/res/layout/settings_picker.xml
index 5423b70..e533228 100644
--- a/LoopbackApp/app/src/main/res/layout/settings_picker.xml
+++ b/LoopbackApp/app/src/main/res/layout/settings_picker.xml
@@ -1,11 +1,26 @@
<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2016 The Android Open Source Project
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+-->
+
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
- android:tag="title"
+ android:id="@+id/settings_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="20dp"/>
@@ -17,12 +32,12 @@
android:orientation="horizontal">
<RelativeLayout
- android:layout_width="0dip"
+ android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3">
- <EditText
- android:tag="valueText"
+ <org.drrickorang.loopback.CatchEventsEditText
+ android:id="@+id/settings_valueText"
android:inputType="number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
@@ -33,12 +48,12 @@
</RelativeLayout>
<RelativeLayout
- android:layout_width="0dip"
+ android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="7">
<SeekBar
- android:tag="seekbar"
+ android:id="@+id/settings_seekbar"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</RelativeLayout>