aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorJorge Ruesga <jorge@ruesga.com>2013-08-12 00:54:34 +0200
committerJorge Ruesga <jorge@ruesga.com>2013-08-12 00:54:34 +0200
commit493a43fe8cbdd5b6c30733cc8c7024bc89acd780 (patch)
tree34747fd027c6d6432956ca5d940109f0b4c56633 /res/layout
parent8b11ba2e0c6d9b90d63dde362f7af59c147ce002 (diff)
downloadandroid_packages_wallpapers_PhotoPhase-493a43fe8cbdd5b6c30733cc8c7024bc89acd780.tar.gz
android_packages_wallpapers_PhotoPhase-493a43fe8cbdd5b6c30733cc8c7024bc89acd780.tar.bz2
android_packages_wallpapers_PhotoPhase-493a43fe8cbdd5b6c30733cc8c7024bc89acd780.zip
Make it compatible with API 15 (4.0.3)
Signed-off-by: Jorge Ruesga <jorge@ruesga.com>
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/choose_disposition_fragment.xml4
-rw-r--r--res/layout/preference_widget_seekbar.xml16
2 files changed, 10 insertions, 10 deletions
diff --git a/res/layout/choose_disposition_fragment.xml b/res/layout/choose_disposition_fragment.xml
index 2df83c3..b169b14 100644
--- a/res/layout/choose_disposition_fragment.xml
+++ b/res/layout/choose_disposition_fragment.xml
@@ -25,8 +25,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/holo_blue_light"
- android:layout_marginStart="@dimen/disposition_frame_margin"
- android:layout_marginEnd="@dimen/disposition_frame_margin"
+ android:layout_marginLeft="@dimen/disposition_frame_margin"
+ android:layout_marginRight="@dimen/disposition_frame_margin"
android:padding="@dimen/disposition_advise_frame_padding"
android:gravity="center_horizontal"
android:textColor="@color/notification_text_color"
diff --git a/res/layout/preference_widget_seekbar.xml b/res/layout/preference_widget_seekbar.xml
index e528abc..35c924e 100644
--- a/res/layout/preference_widget_seekbar.xml
+++ b/res/layout/preference_widget_seekbar.xml
@@ -20,7 +20,7 @@
android:minHeight="?android:attr/listPreferredItemHeight"
android:gravity="center_vertical"
android:baselineAligned="false"
- android:paddingEnd="?android:attr/scrollbarSize">
+ android:paddingRight="?android:attr/scrollbarSize">
<LinearLayout
android:layout_width="wrap_content"
@@ -40,8 +40,8 @@
<RelativeLayout
android:layout_width="0dip"
android:layout_height="wrap_content"
- android:layout_marginStart="8dip"
- android:layout_marginEnd="8dip"
+ android:layout_marginLeft="8dip"
+ android:layout_marginRight="8dip"
android:layout_marginTop="6dip"
android:layout_marginBottom="6dip"
android:layout_weight="1">
@@ -54,11 +54,11 @@
android:ellipsize="marquee"
android:fadingEdge="horizontal" />
- <TextView android:id="@+android:id/summary"
+ <TextView android:id="@+id/summary"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@android:id/title"
- android:layout_alignStart="@android:id/title"
+ android:layout_alignLeft="@android:id/title"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorSecondary"
android:maxLines="4" />
@@ -68,7 +68,7 @@
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_below="@android:id/summary"
- android:layout_alignStart="@android:id/title"
+ android:layout_alignLeft="@android:id/title"
android:minWidth="@dimen/preference_widget_width"
android:gravity="center"
android:orientation="vertical" />
@@ -77,8 +77,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@android:id/summary"
- android:layout_toEndOf="@android:id/widget_frame"
- android:layout_alignParentEnd="true" />
+ android:layout_toRightOf="@android:id/widget_frame"
+ android:layout_alignParentRight="true" />
</RelativeLayout>