42 lines
No EOL
1.4 KiB
XML
42 lines
No EOL
1.4 KiB
XML
<LinearLayout 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:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:baselineAligned="false"
|
|
android:divider="?android:attr/dividerHorizontal"
|
|
android:orientation="horizontal"
|
|
android:showDividers="middle"
|
|
tools:context=".NewsReaderListActivity" >
|
|
|
|
<!--
|
|
This layout is a two-pane layout for the NewsReader
|
|
master/detail flow. See res/values-large/refs.xml and
|
|
res/values-sw600dp/refs.xml for an example of layout aliases
|
|
that replace the single-pane version of the layout with
|
|
this two-pane version.
|
|
|
|
For more on layout aliases, see:
|
|
http://developer.android.com/training/multiscreen/screensizes.html#TaskUseAliasFilters
|
|
-->
|
|
|
|
|
|
<fragment
|
|
android:id="@+id/newsreader_list"
|
|
android:name="de.luhmer.owncloudnewsreader.NewsReaderListFragment"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="2"
|
|
tools:layout="@layout/expandable_list_layout" />
|
|
|
|
<!-- tools:layout="@android:layout/list_content" /> -->
|
|
|
|
|
|
<FrameLayout
|
|
android:id="@+id/newsreader_detail_container"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="3" />
|
|
|
|
</LinearLayout> |