34 lines
1.2 KiB
XML
34 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
||
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<GridView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:id="@+id/gridView"
|
||
|
android:stretchMode="columnWidth"
|
||
|
android:numColumns="auto_fit"
|
||
|
android:verticalSpacing="4dp"
|
||
|
android:horizontalSpacing="4dp"
|
||
|
android:gravity="center"
|
||
|
android:columnWidth="200dp"
|
||
|
tools:listitem="@layout/gpodnet_podcast_listitem"/>
|
||
|
|
||
|
<ProgressBar
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/progressBar"
|
||
|
android:layout_gravity="center"
|
||
|
android:indeterminateOnly="true"/>
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:id="@+id/txtvError"
|
||
|
android:layout_gravity="center"
|
||
|
android:visibility="gone"
|
||
|
android:textSize="@dimen/text_size_small"/>
|
||
|
</FrameLayout>
|