aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/basic_cell_item.xml
blob: a10fc4be2542c3f83b59888a2bc5fb01d4b15539 (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?xml version="1.0" encoding="utf-8"?>
<github.daneren2005.dsub.view.CardView xmlns:android="http://schemas.android.com/apk/res/android"
	android:layout_width="match_parent"
	android:layout_height="match_parent"
	android:layout_margin="2dp">

	<LinearLayout
		android:orientation="vertical"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:background="?attr/selectableItemBackground">

		<github.daneren2005.dsub.view.SquareImageView
			android:id="@+id/item_art"
			android:layout_width="match_parent"
			android:layout_height="match_parent"/>

		<LinearLayout
			android:layout_width="match_parent"
			android:layout_height="wrap_content"
			android:orientation="horizontal"
			android:paddingTop="4dp"
			android:paddingLeft="2dp">

			<TextView
				android:id="@+id/item_name"
				android:layout_width="0dp"
				android:layout_height="wrap_content"
				android:layout_weight="1"
				android:textAppearance="?android:attr/textAppearanceMedium"
				android:singleLine="true"
				android:ellipsize="marquee"
				android:textColor="?android:textColorPrimary"
				android:paddingLeft="@dimen/Card.TextLeftPadding"/>

			<ImageView
				android:id="@+id/item_more"
				android:src="?attr/download_none"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:layout_gravity="right|center_vertical"
				style="@style/MoreButton"/>
		</LinearLayout>
	</LinearLayout>
</github.daneren2005.dsub.view.CardView>