aboutsummaryrefslogtreecommitdiff
path: root/res/layout
diff options
context:
space:
mode:
authorevgenyzinoviev <me@ch1p.com>2015-08-14 17:11:48 +0300
committerevgenyzinoviev <me@ch1p.com>2015-08-14 17:11:48 +0300
commitae0e6ec634d8ab515ae381145a89d9ce649ba082 (patch)
tree081af7274605451b6e48d20961dbcf47bdf43b93 /res/layout
initial
Diffstat (limited to 'res/layout')
-rwxr-xr-xres/layout/activity_gdtr.xml11
-rw-r--r--res/layout/levels_list_item.xml43
2 files changed, 54 insertions, 0 deletions
diff --git a/res/layout/activity_gdtr.xml b/res/layout/activity_gdtr.xml
new file mode 100755
index 0000000..e2e3918
--- /dev/null
+++ b/res/layout/activity_gdtr.xml
@@ -0,0 +1,11 @@
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:paddingBottom="@dimen/activity_vertical_margin"
+ android:paddingLeft="@dimen/activity_horizontal_margin"
+ android:paddingRight="@dimen/activity_horizontal_margin"
+ android:paddingTop="@dimen/activity_vertical_margin"
+ tools:context=".GDTRActivity">
+
+</RelativeLayout>
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