summaryrefslogtreecommitdiffstats
path: root/res/layout
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2012-09-13 15:25:53 -0400
committerChris Wren <cwren@android.com>2012-09-13 15:25:53 -0400
commit1d582745c4bf21b069e0e6961dde72e742b5354a (patch)
tree2e95460f1d67e35fadccbc93afd12e8ff7a42a60 /res/layout
parent651ee92128e1899957758abeeb1c2c669f240093 (diff)
downloadandroid_packages_screensavers_PhotoTable-1d582745c4bf21b069e0e6961dde72e742b5354a.tar.gz
android_packages_screensavers_PhotoTable-1d582745c4bf21b069e0e6961dde72e742b5354a.tar.bz2
android_packages_screensavers_PhotoTable-1d582745c4bf21b069e0e6961dde72e742b5354a.zip
more efficient vignettes
Change-Id: I92192544e63aba5698294e130bfc0794bd0acc4d
Diffstat (limited to 'res/layout')
-rw-r--r--res/layout/table.xml28
1 files changed, 15 insertions, 13 deletions
diff --git a/res/layout/table.xml b/res/layout/table.xml
index bbff2fb..e711f48 100644
--- a/res/layout/table.xml
+++ b/res/layout/table.xml
@@ -14,20 +14,22 @@
limitations under the License.
-->
<FrameLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent" >
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" >
<com.android.dreams.phototable.PhotoTable
- android:background="@+drawable/table"
- android:id="@+id/table"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:background="@+drawable/table"
+ android:id="@+id/table"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent" />
<View
- android:background="@+drawable/vignette_br"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:background="@+drawable/vignette_br"
+ android:layout_gravity="bottom|right"
+ android:layout_width="300dp"
+ android:layout_height="300dp" />
<View
- android:background="@+drawable/vignette_tl"
- android:layout_width="match_parent"
- android:layout_height="match_parent" />
+ android:background="@+drawable/vignette_tl"
+ android:layout_gravity="top|left"
+ android:layout_width="300dp"
+ android:layout_height="300dp" />
</FrameLayout>