summaryrefslogtreecommitdiffstats
path: root/res/layout-xlarge/live_wallpaper_entry.xml
diff options
context:
space:
mode:
authorAdam Cohen <adamcohen@google.com>2010-12-21 17:25:31 -0800
committerAdam Cohen <adamcohen@google.com>2010-12-21 17:29:40 -0800
commitd19ce7b07a0c897ce7bb4f439faae32de35fb437 (patch)
tree27774a239a7d7680c2ed8ef7d216ce607cb9fa22 /res/layout-xlarge/live_wallpaper_entry.xml
parent6a5e9ca672bdaed170ee676284ae5ec0afeac1df (diff)
downloadandroid_packages_wallpapers_LivePicker-d19ce7b07a0c897ce7bb4f439faae32de35fb437.tar.gz
android_packages_wallpapers_LivePicker-d19ce7b07a0c897ce7bb4f439faae32de35fb437.tar.bz2
android_packages_wallpapers_LivePicker-d19ce7b07a0c897ce7bb4f439faae32de35fb437.zip
Adjusting dialog to spec
Change-Id: If739648a4e848ba75be6975e613a3d161f461339
Diffstat (limited to 'res/layout-xlarge/live_wallpaper_entry.xml')
-rw-r--r--res/layout-xlarge/live_wallpaper_entry.xml20
1 files changed, 13 insertions, 7 deletions
diff --git a/res/layout-xlarge/live_wallpaper_entry.xml b/res/layout-xlarge/live_wallpaper_entry.xml
index eacb487..cecdf59 100644
--- a/res/layout-xlarge/live_wallpaper_entry.xml
+++ b/res/layout-xlarge/live_wallpaper_entry.xml
@@ -15,14 +15,14 @@
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="@dimen/live_wallpaper_grid_item_height"
- android:padding="6dip">
+ android:padding="8dp">
<ImageView
android:id="@+id/thumbnail"
- android:layout_width="match_parent"
- android:layout_height="0dp"
+ android:layout_width="@dimen/live_wallpaper_grid_item_width"
+ android:layout_height="@dimen/live_wallpaper_grid_item_height"
android:layout_gravity="center"
android:layout_weight="1"
android:scaleType="centerCrop" />
@@ -33,7 +33,13 @@
android:layout_weight="0"
android:layout_gravity="center"
android:gravity="bottom"
- android:textAppearance="?android:attr/textAppearanceMedium"
android:singleLine="true"
- android:ellipsize="marquee" />
+ android:ellipsize="marquee"
+
+ android:textColor="#FFFFFFFF"
+ android:textSize="14sp"
+ android:shadowColor="#FF000000"
+ android:shadowDx="0.0"
+ android:shadowDy="1.0"
+ android:shadowRadius="1.0" />
</LinearLayout>