otbeta/com.iamthefij.otbeta/src/main/res/layout-w900dp/workout_list.xml

38 lines
1.4 KiB
XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
android:baselineAligned="false"
android:divider="?android:attr/dividerHorizontal"
android:orientation="horizontal"
android:showDividers="middle"
tools:context="com.iamthefij.otbeta.WorkoutListActivity">
<!--
This layout is a two-pane layout for the Workouts
master/detail flow.
-->
<android.support.v7.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/workout_list"
android:name="com.iamthefij.otbeta.WorkoutListFragment"
android:layout_width="@dimen/item_width"
android:layout_height="match_parent"
app:layoutManager="LinearLayoutManager"
tools:context="com.iamthefij.otbeta.WorkoutListActivity"
tools:listitem="@layout/workout_list_content" />
<FrameLayout
android:id="@+id/workout_detail_container"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="3"
tools:ignore="InconsistentLayout"/>
</LinearLayout>