2013-02-27 06:39:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2011-11-28 17:14:50 +00:00
|
|
|
android:id="@+id/cats_fragment.xml"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="fill_parent" >
|
2013-02-27 06:39:23 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-10-15 12:41:33 +00:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/feeds_swipe_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
2013-02-27 06:39:23 +00:00
|
|
|
|
2014-10-15 12:41:33 +00:00
|
|
|
<ListView
|
|
|
|
android:id="@+id/feeds"
|
|
|
|
android:layoutAnimation="@anim/layout_feeds"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
</ListView>
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
|
2013-02-27 06:39:23 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/no_feeds"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:text="@string/no_feeds"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:visibility="invisible" >
|
|
|
|
</TextView>
|
|
|
|
|
|
|
|
</FrameLayout>
|