diff options
author | ByteHamster <info@bytehamster.com> | 2020-03-17 14:23:16 +0100 |
---|---|---|
committer | ByteHamster <info@bytehamster.com> | 2020-03-17 14:35:10 +0100 |
commit | 7db3da273aba428e01dc0611d2ad3af56c7f7591 (patch) | |
tree | d4e1518a2217dbafd6f96f2dd87dbd87bb28caae /core/src | |
parent | 8d2a188eda47b88351c1208190356a7f6a49b599 (diff) | |
download | AntennaPod-7db3da273aba428e01dc0611d2ad3af56c7f7591.zip |
Re-added paged feed button
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/res/layout/more_content_list_footer.xml | 32 |
1 files changed, 20 insertions, 12 deletions
diff --git a/core/src/main/res/layout/more_content_list_footer.xml b/core/src/main/res/layout/more_content_list_footer.xml index bfe9e89b6..f6d6a313c 100644 --- a/core/src/main/res/layout/more_content_list_footer.xml +++ b/core/src/main/res/layout/more_content_list_footer.xml @@ -1,28 +1,36 @@ <?xml version="1.0" encoding="utf-8"?> -<FrameLayout +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" - android:id="@+id/main" + android:id="@+id/more_content_list_footer" android:layout_width="match_parent" - android:layout_height="match_parent" - android:background="?attr/selectableItemBackground"> + android:layout_height="wrap_content" + android:foreground="?attr/selectableItemBackground" + android:background="?android:attr/windowBackground" + android:gravity="center" + android:padding="8dp"> <ImageView android:id="@+id/imgExpand" - android:layout_width="wrap_content" - android:layout_height="wrap_content" + android:layout_width="16dp" + android:layout_height="16dp" android:layout_gravity="center" - android:layout_margin="16dp" android:contentDescription="@string/load_next_page_label" app:srcCompat="?attr/ic_load_more" /> <ProgressBar android:id="@+id/progBar" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_gravity="center" - android:layout_margin="16dp" + android:layout_width="16dp" + android:layout_height="16dp" android:indeterminateOnly="true" android:visibility="gone" /> -</FrameLayout>
\ No newline at end of file + <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>
\ No newline at end of file |