aboutsummaryrefslogtreecommitdiff
path: root/res/layout/levels_list_item.xml
blob: def6e9fdc4beac0be85c34d908f4edbb8ed050f5 (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
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
		android:orientation="vertical"
		android:layout_width="match_parent"
		android:layout_height="match_parent"
		android:paddingTop="7dp"
		android:paddingBottom="7dp">

	<org.happysanta.gd.Menu.Views.MenuHelmetView
			android:layout_width="wrap_content"
			android:layout_height="match_parent" />

	<LinearLayout
			android:layout_width="match_parent"
			android:layout_height="wrap_content"
			android:orientation="horizontal">

		<LinearLayout
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:orientation="horizontal">

			<TextView
					android:id="@+id/level_name"
					android:layout_width="match_parent"
					android:layout_weight="1"
					android:layout_height="wrap_content"
					android:paddingTop="7dp"
					android:lineSpacingMultiplier="1.1"
					android:lineSpacingExtra="0px"
					android:textSize="20sp"
					android:textColor="@drawable/menu_item_color" />
		</LinearLayout>

		<TextView
				android:id="@+id/level_count"
				android:layout_width="wrap_content"
				android:layout_height="wrap_content"
				android:textSize="16sp" />

	</LinearLayout>
</LinearLayout>