39 lines
1.3 KiB
XML
Executable File
39 lines
1.3 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/cats_fragment.xml"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="fill_parent" >
|
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
android:id="@+id/feeds_swipe_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<ListView
|
|
android:id="@+id/feeds"
|
|
android:dividerHeight="0dp"
|
|
android:divider="@null"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
</ListView>
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
|
|
|
<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>
|
|
|
|
<ProgressBar
|
|
style="?android:attr/progressBarStyleLarge"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/feeds_loading_bar"
|
|
android:layout_gravity="center" />
|
|
|
|
</FrameLayout> |