summaryrefslogtreecommitdiff
path: root/app/src/main/res
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2022-05-07 10:52:45 +0200
committerByteHamster <info@bytehamster.com>2022-05-08 11:18:50 +0200
commit1fa0c32142c0c288adf8784c6c032ae3fa4a6611 (patch)
treec87d5cdf10bc0afe3a10e9137608cc8ea5521e78 /app/src/main/res
parent77ced35dff5b9d398575913e7b751ce2d53f7c6e (diff)
downloadAntennaPod-1fa0c32142c0c288adf8784c6c032ae3fa4a6611.zip
Multi-Select on 'All episodes' screen
Diffstat (limited to 'app/src/main/res')
-rw-r--r--app/src/main/res/layout/all_episodes_fragment.xml33
1 files changed, 18 insertions, 15 deletions
diff --git a/app/src/main/res/layout/all_episodes_fragment.xml b/app/src/main/res/layout/all_episodes_fragment.xml
index 3b560967c..c1e7e6434 100644
--- a/app/src/main/res/layout/all_episodes_fragment.xml
+++ b/app/src/main/res/layout/all_episodes_fragment.xml
@@ -2,9 +2,9 @@
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
- android:orientation="vertical"
android:layout_width="match_parent"
- android:layout_height="match_parent">
+ android:layout_height="match_parent"
+ android:orientation="vertical">
<TextView
android:id="@+id/txtvInformation"
@@ -23,17 +23,17 @@
android:layout_below="@+id/txtvInformation"
android:layout_above="@id/loadingMore">
- <de.danoeh.antennapod.view.EpisodeItemListRecyclerView
- android:id="@android:id/list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_marginTop="0dp"
- android:layout_marginBottom="0dp"
- android:paddingTop="@dimen/list_vertical_padding"
- android:paddingBottom="@dimen/list_vertical_padding"
- android:paddingHorizontal="@dimen/additional_horizontal_spacing"
- tools:itemCount="13"
- tools:listitem="@layout/feeditemlist_item" />
+ <de.danoeh.antennapod.view.EpisodeItemListRecyclerView
+ android:id="@android:id/list"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_marginTop="0dp"
+ android:layout_marginBottom="0dp"
+ android:paddingTop="@dimen/list_vertical_padding"
+ android:paddingBottom="@dimen/list_vertical_padding"
+ android:paddingHorizontal="@dimen/additional_horizontal_spacing"
+ tools:itemCount="13"
+ tools:listitem="@layout/feeditemlist_item" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
@@ -45,7 +45,7 @@
android:indeterminateOnly="true"
android:visibility="gone"
android:layout_centerInParent="true"
- tools:background="@android:color/holo_red_light"/>
+ tools:background="@android:color/holo_red_light" />
<LinearLayout
android:id="@+id/loadingMore"
@@ -76,4 +76,7 @@
</LinearLayout>
-</RelativeLayout> \ No newline at end of file
+ <include
+ layout="@layout/multi_select_speed_dial" />
+
+</RelativeLayout>