aboutsummaryrefslogtreecommitdiff
path: root/res/layout/levels_list_item.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/levels_list_item.xml')
-rw-r--r--res/layout/levels_list_item.xml43
1 files changed, 43 insertions, 0 deletions
diff --git a/res/layout/levels_list_item.xml b/res/layout/levels_list_item.xml
new file mode 100644
index 0000000..def6e9f
--- /dev/null
+++ b/res/layout/levels_list_item.xml
@@ -0,0 +1,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> \ No newline at end of file