2014-10-16 20:06:56 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/headlines_fragment"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/headlines_swipe_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
|
2014-10-24 10:15:26 +00:00
|
|
|
<ListView
|
2014-10-16 20:06:56 +00:00
|
|
|
android:id="@+id/headlines"
|
|
|
|
android:layout_width="match_parent"
|
2014-10-24 10:15:26 +00:00
|
|
|
android:layoutAnimation="@anim/layout_headline"
|
|
|
|
android:dividerHeight="0dp"
|
|
|
|
android:divider="@null"
|
2014-10-16 20:06:56 +00:00
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:layout_height="match_parent" >
|
2014-10-24 10:15:26 +00:00
|
|
|
</ListView>
|
2014-10-16 20:06:56 +00:00
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
|
2013-05-28 08:55:21 +00:00
|
|
|
</FrameLayout>
|