You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tasks/app/src/main/res/layout-w820dp/task_list_activity.xml

36 lines
1.0 KiB
XML

<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:baselineAligned="false"
android:orientation="horizontal">
<!-- Task List -->
<FrameLayout
android:id="@+id/master"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="60"
tools:ignore="InconsistentLayout"/>
<!-- Task Edit -->
<FrameLayout
android:id="@+id/detail"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="40"
tools:ignore="InconsistentLayout"/>
</LinearLayout>
<include layout="@layout/navigation_drawer"/>
</android.support.v4.widget.DrawerLayout>