summaryrefslogtreecommitdiffstats
path: root/res/layout/album_set_item.xml
diff options
context:
space:
mode:
authorBobby Georgescu <georgescu@google.com>2013-03-04 11:44:49 -0800
committerBobby Georgescu <georgescu@google.com>2013-03-05 17:37:31 -0800
commit2bb0c98d91bce5e061ccb4dd6dd8765d74f89ce2 (patch)
tree3649706592b2727a86bab729c12beb8c92d1752d /res/layout/album_set_item.xml
parentdd26ed4af3d9575e7dae882ee0304fc50b463f55 (diff)
downloadandroid_packages_apps_Snap-2bb0c98d91bce5e061ccb4dd6dd8765d74f89ce2.tar.gz
android_packages_apps_Snap-2bb0c98d91bce5e061ccb4dd6dd8765d74f89ce2.tar.bz2
android_packages_apps_Snap-2bb0c98d91bce5e061ccb4dd6dd8765d74f89ce2.zip
Preliminary AlbumSet UI
Change-Id: Ie99bd2939bfcb47c80605cbb22b84b1064098e91
Diffstat (limited to 'res/layout/album_set_item.xml')
-rw-r--r--res/layout/album_set_item.xml40
1 files changed, 40 insertions, 0 deletions
diff --git a/res/layout/album_set_item.xml b/res/layout/album_set_item.xml
new file mode 100644
index 000000000..46084e938
--- /dev/null
+++ b/res/layout/album_set_item.xml
@@ -0,0 +1,40 @@
+<?xml version="1.0" encoding="utf-8"?>
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:background="#FFF" >
+
+ <TextView
+ android:id="@+id/album_set_item_title"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:layout_alignParentTop="true"
+ android:layout_marginLeft="10dp"
+ android:layout_marginTop="10dp"
+ android:textAppearance="?android:attr/textAppearanceMedium" />
+
+ <TextView
+ android:id="@+id/album_set_item_date"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_alignLeft="@+id/album_set_item_title"
+ android:layout_below="@+id/album_set_item_title"
+ android:layout_marginBottom="10dp"
+ android:textAppearance="?android:attr/textAppearanceSmall" />
+
+ <ImageView
+ android:id="@+id/album_set_item_image"
+ android:layout_width="match_parent"
+ android:layout_height="@dimen/album_set_item_image_height"
+ android:layout_below="@+id/album_set_item_date"
+ android:scaleType="centerCrop" />
+
+ <ProgressBar
+ android:id="@+id/album_set_item_upload_progress"
+ style="?android:attr/progressBarStyleHorizontal"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:visibility="invisible"
+ android:layout_alignParentBottom="true" />
+</RelativeLayout> \ No newline at end of file