2011-09-08 12:45:08 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
2011-11-22 12:49:21 +00:00
|
|
|
android:layout_height="fill_parent" android:id="@+id/headlines_fragment">
|
2011-11-24 10:01:51 +00:00
|
|
|
<ListView android:layout_height="match_parent" android:layout_width="match_parent" android:id="@+id/headlines"></ListView>
|
2011-11-23 10:55:05 +00:00
|
|
|
<LinearLayout android:id="@+id/loading_container" android:gravity="center" android:layout_height="match_parent" android:layout_width="match_parent">
|
|
|
|
<ProgressBar android:layout_width="wrap_content" style="?android:attr/progressBarStyleLarge" android:id="@+id/loading_progress" android:layout_height="wrap_content"></ProgressBar>
|
|
|
|
<TextView android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/loading_message" android:layout_height="wrap_content" ></TextView>
|
|
|
|
</LinearLayout>
|
2011-09-08 12:45:08 +00:00
|
|
|
</FrameLayout>
|