diff options
author | Scott Jackson <daneren2005@gmail.com> | 2013-07-27 14:36:03 -0700 |
---|---|---|
committer | Scott Jackson <daneren2005@gmail.com> | 2013-07-27 14:36:03 -0700 |
commit | fc19957642783f8d6f65e9eb24d89efcf9c900eb (patch) | |
tree | 342a8f3af72b050a2f7dbd6f089bca8c11cfb0c1 /res/layout/select_album_footer.xml | |
parent | 4738428c2c205f42200386ae09b44b9ec07b9144 (diff) | |
download | dsub-fc19957642783f8d6f65e9eb24d89efcf9c900eb.tar.gz dsub-fc19957642783f8d6f65e9eb24d89efcf9c900eb.tar.bz2 dsub-fc19957642783f8d6f65e9eb24d89efcf9c900eb.zip |
Missed in commit
Diffstat (limited to 'res/layout/select_album_footer.xml')
-rw-r--r-- | res/layout/select_album_footer.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/res/layout/select_album_footer.xml b/res/layout/select_album_footer.xml new file mode 100644 index 00000000..c1a30a1a --- /dev/null +++ b/res/layout/select_album_footer.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:background="@android:color/transparent"
+ android:paddingTop="6dp"
+ android:paddingBottom="0dp"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content">
+
+ <Button android:id="@+id/select_album_more"
+ android:text="@string/select_album.more"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:visibility="gone"
+ android:layout_marginLeft="6dp"
+ android:layout_marginRight="6dp"
+ android:layout_weight="1"
+ android:layout_width="0dp"
+ android:layout_height="fill_parent"/>
+
+</LinearLayout>
+
|