summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTarun Nainani <tnainani@codeaurora.org>2014-11-14 16:50:29 -0800
committerWebTech Code Review <code-review@localhost>2014-11-18 09:59:28 -0800
commite24f852d33843cd083d5482c8792e2f4ebc3d68b (patch)
treef4cc937ed0c1cf2a1dbfa02aae8ed3fc1b120090
parentac7245633132758808390b9d98b11af3114b3143 (diff)
downloadandroid_packages_apps_Gello-e24f852d33843cd083d5482c8792e2f4ebc3d68b.tar.gz
android_packages_apps_Gello-e24f852d33843cd083d5482c8792e2f4ebc3d68b.tar.bz2
android_packages_apps_Gello-e24f852d33843cd083d5482c8792e2f4ebc3d68b.zip
Fix resources causing error with v21 toolset.
-rw-r--r--res/layout/preference_widget_seekbar.xml6
1 files changed, 3 insertions, 3 deletions
diff --git a/res/layout/preference_widget_seekbar.xml b/res/layout/preference_widget_seekbar.xml
index 324eb990..6f58823e 100644
--- a/res/layout/preference_widget_seekbar.xml
+++ b/res/layout/preference_widget_seekbar.xml
@@ -56,7 +56,7 @@
android:ellipsize="marquee"
android:fadingEdge="horizontal" />
- <TextView android:id="@+android:id/summary"
+ <TextView android:id="@android:id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
@@ -66,7 +66,7 @@
android:maxLines="4" />
<!-- Preference should place its actual preference widget here. -->
- <LinearLayout android:id="@+android:id/widget_frame"
+ <LinearLayout android:id="@android:id/widget_frame"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_below="@android:id/summary"
@@ -75,7 +75,7 @@
android:gravity="center"
android:orientation="vertical" />
- <SeekBar android:id="@+android:id/seekbar2"
+ <SeekBar android:id="@+id/seekbar2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@android:id/summary"