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