summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authornebkat <nebkat@teamhacksung.org>2012-12-27 17:34:01 +0000
committernebkat <nebkat@teamhacksung.org>2012-12-27 17:34:44 +0000
commit5ffcd2b98cad37a08338f6e1677b6ba0b6eee0be (patch)
treef4bf7468b0a1a8a3fc221a4fe1af0a4ab5e301ef /res/layout
parent16e27563f01f95ed7ded10f2a2ba76d2ea4e65b4 (diff)
downloadandroid_packages_apps_Trebuchet-5ffcd2b98cad37a08338f6e1677b6ba0b6eee0be.tar.gz
android_packages_apps_Trebuchet-5ffcd2b98cad37a08338f6e1677b6ba0b6eee0be.tar.bz2
android_packages_apps_Trebuchet-5ffcd2b98cad37a08338f6e1677b6ba0b6eee0be.zip
Hotseat: Icon scale
Change-Id: I6cae71283c164fe576dfd8338097f74d5d025b4a
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/seekbar_dialog.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/res/layout/seekbar_dialog.xml b/res/layout/seekbar_dialog.xml
new file mode 100644
index 000000000..254a4ec41
--- /dev/null
+++ b/res/layout/seekbar_dialog.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2008 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:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical"
+ android:gravity="center_horizontal">
+
+ <TextView android:id="@+id/value"
+ android:layout_centerInParent="true"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:paddingTop="5dip"
+ android:textAppearance="?android:textAppearanceLarge" />
+
+ <SeekBar android:id="@+id/seekbar"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:padding="20dip"
+ android:paddingTop="5dip" />
+
+</LinearLayout>