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"
|
|
|
|
android:layout_height="fill_parent" android:id="@+id/headlines_fragment">
|
|
|
|
<LinearLayout android:layout_width="fill_parent" android:layout_height="fill_parent" xmlns:android="http://schemas.android.com/apk/res/android">
|
2011-09-09 16:36:09 +00:00
|
|
|
<ListView android:layout_weight="1" android:background="#fafafa"
|
2011-09-08 12:45:08 +00:00
|
|
|
android:layout_width="match_parent" android:layout_height="match_parent" android:id="@+id/headlines"></ListView>
|
|
|
|
</LinearLayout>
|
2011-09-09 09:50:15 +00:00
|
|
|
|
2011-09-09 16:36:09 +00:00
|
|
|
<TextView android:id="@+id/no_headlines"
|
|
|
|
android:visibility="invisible"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/no_headlines"></TextView>
|
|
|
|
|
2011-09-08 12:45:08 +00:00
|
|
|
</FrameLayout>
|