aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/album_list_header.xml
blob: 58af33539c2bee8e114387f36995c7eeafe97782 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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>