summaryrefslogtreecommitdiff
path: root/vdrmanager/app/src/main/res/layout/child_layout.xml
blob: 69340a615fb4170cfcb4a7d2544fa3e980c5b11e (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
<LinearLayout android:id="@+id/LinearLayout01"
	android:layout_width="fill_parent" android:layout_height="40dip"
	xmlns:android="http://schemas.android.com/apk/res/android"
	>
	<LinearLayout android:layout_width="fill_parent"
	 	android:background="@android:drawable/list_selector_background"
		android:layout_height="wrap_content">
		<TextView android:id="@+id/channel_name"
			android:layout_width="wrap_content" android:layout_height="wrap_content"
			android:text="Channel" android:gravity="center_vertical|left"
			android:paddingLeft="15dip" android:paddingRight="5dip"
			android:textColor="#ffffffff"
			android:textStyle="bold" android:maxLines="2"
			android:textAppearance="?android:textAppearanceMedium"
			android:layout_weight="2" />

		<TextView android:id="@+id/channel_aux" android:layout_width="40dip"
			android:layout_height="40dip" android:layout_weight="1" android:text="23"
			android:gravity="center_vertical|right" android:ellipsize="end"
			android:layout_marginRight="5dip" android:textColor="#BDBDBD"
			android:textSize="11sp"
			android:textAppearance="?android:textAppearanceSmall" />
	</LinearLayout>

</LinearLayout>