forgot to add the landscape layout
authorkenstir <kenstir@gmail.com>
Fri, 3 Jan 2014 02:13:55 +0000 (21:13 -0500)
committerkenstir <kenstir@gmail.com>
Fri, 3 Jan 2014 02:13:55 +0000 (21:13 -0500)
Open-ILS/src/Android/core/res/layout-land/activity_main.xml [new file with mode: 0644]

diff --git a/Open-ILS/src/Android/core/res/layout-land/activity_main.xml b/Open-ILS/src/Android/core/res/layout-land/activity_main.xml
new file mode 100644 (file)
index 0000000..72f5d1a
--- /dev/null
@@ -0,0 +1,46 @@
+<?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="@dimen/bigActionButton_marginVertical"
+              android:background="@drawable/background_grey_image">
+
+    <Button
+            android:layout_width="match_parent"
+            android:layout_height="48dp"
+            style="@style/BigActionButton"
+            android:text="@string/title_search"
+            android:id="@+id/main_btn_search"
+            android:onClick="onButtonClick"
+            android:drawableLeft="@drawable/kghostview"/>
+
+    <Button
+            android:layout_width="match_parent"
+            android:layout_height="48dp"
+            style="@style/BigActionButton"
+            android:text="@string/title_check_out"
+            android:id="@+id/account_btn_check_out"
+            android:onClick="onButtonClick"
+            android:drawableLeft="@drawable/items_checked_out"/>
+
+    <Button
+            android:layout_width="match_parent"
+            android:layout_height="48dp"
+            style="@style/BigActionButton"
+            android:text="@string/title_holds"
+            android:id="@+id/account_btn_holds"
+            android:onClick="onButtonClick"
+            android:drawableLeft="@drawable/holds"/>
+
+    <Button
+            android:layout_width="match_parent"
+            android:layout_height="48dp"
+            style="@style/BigActionButton"
+            android:text="@string/title_fines"
+            android:id="@+id/account_btn_fines"
+            android:onClick="onButtonClick"
+            android:drawableLeft="@drawable/fines"/>
+
+</LinearLayout>
\ No newline at end of file