summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/all_episodes_fragment.xml
diff options
context:
space:
mode:
authorByteHamster <ByteHamster@users.noreply.github.com>2022-05-08 21:47:26 +0200
committerGitHub <noreply@github.com>2022-05-08 21:47:26 +0200
commit6e5004be22f20e3a51697909bf4d1e423252b83c (patch)
tree127297582c587aa07b1a25050251ec1ab6db246c /app/src/main/res/layout/all_episodes_fragment.xml
parentbfb811d29e611146855f77df5dd97b9fb664cf25 (diff)
parent850529856a0dfdab701b6720f35f15ee13a090c2 (diff)
downloadAntennaPod-6e5004be22f20e3a51697909bf4d1e423252b83c.zip
Merge pull request #5872 from ByteHamster/multi-select-all-episodes
Multi-Select on 'All episodes' screen
Diffstat (limited to 'app/src/main/res/layout/all_episodes_fragment.xml')
-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>