aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/album_list_header.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-06-18 17:26:49 -0700
committerScott Jackson <daneren2005@gmail.com>2015-06-18 17:26:49 -0700
commit44faeb4cc59d69df0c633d04c76d3a94c4fac2aa (patch)
tree10ab1ccbd9e9e54539fe4095e3bcc481ee13cb56 /app/src/main/res/layout/album_list_header.xml
parent9f8e9b89bb2d564bcaf00309b38ed9c4d970aeb9 (diff)
parentf632dc5f46943c6a258d5f1cd85c6c6d923c4a3a (diff)
downloaddsub-44faeb4cc59d69df0c633d04c76d3a94c4fac2aa.tar.gz
dsub-44faeb4cc59d69df0c633d04c76d3a94c4fac2aa.tar.bz2
dsub-44faeb4cc59d69df0c633d04c76d3a94c4fac2aa.zip
Merge branch 'NavigationView' into SlideUpPanel2
Diffstat (limited to 'app/src/main/res/layout/album_list_header.xml')
-rw-r--r--app/src/main/res/layout/album_list_header.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/src/main/res/layout/album_list_header.xml b/app/src/main/res/layout/album_list_header.xml
new file mode 100644
index 00000000..58af3353
--- /dev/null
+++ b/app/src/main/res/layout/album_list_header.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
+
+ <TextView
+ android:id="@+id/item_name"
+ android:layout_width="0dp"
+ android:layout_weight="1"
+ android:layout_height="wrap_content"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:background="@android:color/transparent"
+ android:textColor="@color/cyan"
+ android:textStyle="bold"
+ android:paddingLeft="6dp"
+ android:paddingRight="6dp"
+ android:paddingTop="8dp"
+ android:paddingBottom="8dp"/>
+
+ <CheckBox
+ android:id="@+id/item_checkbox"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/main.albums_per_folder"
+ android:layout_marginRight="6dp"
+ android:layout_gravity="right"/>
+</LinearLayout> \ No newline at end of file