AntennaPod/app/src/main/res/layout/more_content_list_footer.xml

37 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/more_content_list_footer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:foreground="?attr/selectableItemBackground"
android:background="?android:attr/colorBackground"
android:gravity="center"
android:padding="8dp">
<ImageView
android:id="@+id/imgExpand"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_gravity="center"
android:contentDescription="@string/load_next_page_label"
app:srcCompat="@drawable/ic_load_more" />
<ProgressBar
android:id="@+id/progBar"
android:layout_width="16dp"
android:layout_height="16dp"
android:indeterminateOnly="true"
android:visibility="gone" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/load_next_page_label"
android:textColor="?android:attr/textColorPrimary"
android:layout_marginLeft="8dp"
android:layout_marginRight="8dp" />
</LinearLayout>