Migrate to gradle, appcompat as external dependency.
[mobilnebezpieczenstwo.git] / app / src / main / res / layout-large-land / activity_main.xml
diff --git a/app/src/main/res/layout-large-land/activity_main.xml b/app/src/main/res/layout-large-land/activity_main.xml
new file mode 100644 (file)
index 0000000..f8aced4
--- /dev/null
@@ -0,0 +1,40 @@
+<!-- A DrawerLayout is intended to be used as the top-level content view using match_parent for both width and height to consume the full space available. -->
+<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+    xmlns:tools="http://schemas.android.com/tools"
+    android:id="@+id/tablet_layout"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    tools:context="com.samsung.srpol.MainActivity" >
+
+    <android.support.v4.view.ViewPager
+        android:id="@+id/myviewpager"
+        android:layout_toRightOf="@+id/drawer_separator"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent" >
+
+        <android.support.v4.view.PagerTabStrip
+            android:id="@+id/titlestrip"
+            android:layout_width="match_parent"
+            android:layout_height="wrap_content"
+            android:background="@color/header_bg"
+            android:textColor="@color/text_main" />
+    </android.support.v4.view.ViewPager>
+
+    <fragment
+        android:id="@+id/menu_container"
+        android:name="com.samsung.srpol.ui.drawer.MenuFragment"
+        android:layout_alignParentLeft="true"
+        android:layout_width="@dimen/menu_container_width"
+        android:layout_height="match_parent"
+        android:layout_gravity="start"
+        tools:layout="@layout/fragment_navigation_drawer" />
+
+    <ImageView 
+        android:id="@+id/drawer_separator"
+        android:layout_width="wrap_content"
+        android:layout_height="match_parent"
+        android:layout_toRightOf="@+id/menu_container"
+        android:src="@drawable/nav_drawer_separator"
+        android:scaleType="fitXY"/>
+
+</RelativeLayout>