2011-11-24 13:04:58 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-09-08 12:45:08 +00:00
|
|
|
android:layout_width="fill_parent"
|
2011-09-10 08:03:32 +00:00
|
|
|
android:layout_height="fill_parent" android:id="@+id/main_flipper">
|
2011-11-24 13:04:58 +00:00
|
|
|
<LinearLayout android:layout_width="match_parent" android:layout_height="match_parent" android:gravity="center" android:id="@+id/loading_container">
|
|
|
|
<ProgressBar android:id="@+id/loading_progress" android:layout_height="wrap_content" android:layout_width="wrap_content" style="?android:attr/progressBarStyleLarge"></ProgressBar>
|
|
|
|
<TextView android:textAppearance="?android:attr/textAppearanceLarge" android:text="@string/loading_message" android:layout_height="wrap_content" android:layout_width="wrap_content" android:id="@+id/loading_message"></TextView>
|
|
|
|
</LinearLayout>
|
2011-11-24 12:16:07 +00:00
|
|
|
<LinearLayout android:layout_height="fill_parent" android:orientation="horizontal" android:id="@+id/main" android:layout_width="fill_parent">
|
2011-11-25 19:04:11 +00:00
|
|
|
<FrameLayout android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="0.3" android:id="@+id/feeds_fragment"></FrameLayout>
|
2011-11-24 12:16:07 +00:00
|
|
|
<FrameLayout android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="0.5" android:id="@+id/headlines_fragment"></FrameLayout>
|
|
|
|
<FrameLayout android:layout_height="match_parent" android:layout_width="0dp" android:layout_weight="0.5" android:id="@+id/article_fragment"></FrameLayout>
|
|
|
|
</LinearLayout>
|
2011-09-08 12:45:08 +00:00
|
|
|
|
2011-09-09 11:58:11 +00:00
|
|
|
|
2011-11-24 13:04:58 +00:00
|
|
|
</FrameLayout>
|