2015-06-03 21:30:35 +00:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-02-07 13:35:44 +00:00
|
|
|
android:id="@+id/headlines"
|
2015-06-04 11:56:54 +00:00
|
|
|
android:fitsSystemWindows="true"
|
2014-11-01 20:05:53 +00:00
|
|
|
android:layout_width="fill_parent"
|
2015-06-03 21:30:35 +00:00
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
2015-06-10 16:24:24 +00:00
|
|
|
<include layout="@layout/toolbar" android:id="@+id/toolbar" />
|
2014-11-01 20:05:53 +00:00
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/sw600dp_anchor"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" >
|
|
|
|
</FrameLayout>
|
|
|
|
|
2015-02-07 13:35:44 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/fragment_container"
|
2014-11-01 20:05:53 +00:00
|
|
|
android:layout_width="match_parent"
|
2015-02-07 13:35:44 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:baselineAligned="false"
|
2015-06-03 21:30:35 +00:00
|
|
|
android:orientation="horizontal"
|
2015-06-10 16:24:24 +00:00
|
|
|
android:layout_below="@+id/toolbar">
|
2014-11-01 20:05:53 +00:00
|
|
|
|
|
|
|
<FrameLayout
|
2015-02-07 13:35:44 +00:00
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:id="@+id/headlines_fragment"
|
|
|
|
android:layout_width="0dp"
|
2014-11-01 20:05:53 +00:00
|
|
|
android:layout_height="match_parent"
|
2015-02-07 13:35:44 +00:00
|
|
|
android:layout_weight="0.4"
|
|
|
|
android:background="?headlinesBackground" >
|
2014-11-01 20:05:53 +00:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
2015-02-07 13:35:44 +00:00
|
|
|
android:id="@+id/article_fragment"
|
|
|
|
android:layout_width="0dp"
|
2014-11-01 20:05:53 +00:00
|
|
|
android:layout_height="match_parent"
|
2015-02-07 13:35:44 +00:00
|
|
|
android:layout_weight="0.6"
|
|
|
|
android:elevation="4dp"
|
|
|
|
android:background="?articleBackground" >
|
2014-11-01 20:05:53 +00:00
|
|
|
</FrameLayout>
|
2015-02-07 13:35:44 +00:00
|
|
|
</LinearLayout>
|
2014-11-01 20:05:53 +00:00
|
|
|
|
2015-06-03 21:30:35 +00:00
|
|
|
</RelativeLayout>
|