2011-09-08 16:45:08 +04:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2012-06-22 12:21:32 +04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/headlines_fragment"
|
2011-09-08 16:45:08 +04:00
|
|
|
android:layout_width="fill_parent"
|
2012-06-22 12:21:32 +04:00
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:paddingLeft="5dp" >
|
|
|
|
|
2011-11-24 13:01:51 +03:00
|
|
|
<ListView android:layout_height="match_parent" android:layout_width="match_parent" android:id="@+id/headlines"></ListView>
|
2011-11-23 13:55:05 +03:00
|
|
|
<LinearLayout android:id="@+id/loading_container" android:gravity="center" android:layout_height="match_parent" android:layout_width="match_parent">
|
|
|
|
<TextView android:layout_width="wrap_content" android:textAppearance="?android:attr/textAppearanceLarge" android:id="@+id/loading_message" android:layout_height="wrap_content" ></TextView>
|
|
|
|
</LinearLayout>
|
2011-12-05 21:32:45 +03:00
|
|
|
<TextView android:id="@+id/no_headlines"
|
|
|
|
android:visibility="invisible"
|
|
|
|
android:layout_gravity="center"
|
2011-12-06 12:37:46 +03:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/no_headlines"></TextView>
|
2011-12-05 21:32:45 +03:00
|
|
|
|
2011-09-08 16:45:08 +04:00
|
|
|
</FrameLayout>
|