2012-09-16 09:25:28 +00:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-05-28 06:21:01 +00:00
|
|
|
android:id="@+id/main"
|
2012-09-16 09:25:28 +00:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
2013-05-28 06:21:01 +00:00
|
|
|
android:background="?headlinesBackgroundSolid"
|
2012-09-16 09:25:28 +00:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2013-05-28 06:21:01 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/sw600dp_anchor"
|
2012-09-16 09:25:28 +00:00
|
|
|
android:layout_width="match_parent"
|
2013-05-28 06:21:01 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" >
|
2012-09-16 09:25:28 +00:00
|
|
|
|
2013-05-28 06:21:01 +00:00
|
|
|
</FrameLayout>
|
2012-09-16 09:25:28 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2012-09-19 09:37:12 +00:00
|
|
|
android:baselineAligned="false"
|
2013-05-28 06:21:01 +00:00
|
|
|
android:weightSum="1.05"
|
2012-09-16 09:25:28 +00:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<FrameLayout
|
2013-05-28 06:21:01 +00:00
|
|
|
android:id="@+id/feeds_fragment"
|
2012-09-16 09:25:28 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
2013-05-28 06:21:01 +00:00
|
|
|
android:layout_weight="1"
|
2012-12-31 08:49:30 +00:00
|
|
|
android:background="?feedlistBackground" >
|
2012-09-16 09:25:28 +00:00
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<FrameLayout
|
2013-05-28 06:21:01 +00:00
|
|
|
android:id="@+id/headlines_fragment"
|
2012-09-16 09:25:28 +00:00
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
2013-05-28 06:21:01 +00:00
|
|
|
android:layout_weight="2"
|
|
|
|
android:background="?headlinesBackground" >
|
2012-09-16 09:25:28 +00:00
|
|
|
</FrameLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|