summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/gpodnet_podcast_list.xml
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2020-03-16 17:24:52 +0100
committerByteHamster <info@bytehamster.com>2020-03-16 17:24:57 +0100
commitbe22ad1682ae4369a27fa3a1557cfe8e716df5d2 (patch)
tree74dd46b09d81fd68eee11bd0eade80282bf17fee /app/src/main/res/layout/gpodnet_podcast_list.xml
parent78b26fefb58ed5b7406909dcc8e8e5113e502424 (diff)
downloadAntennaPod-be22ad1682ae4369a27fa3a1557cfe8e716df5d2.zip
Added toolbar to online search fragments
Diffstat (limited to 'app/src/main/res/layout/gpodnet_podcast_list.xml')
-rw-r--r--app/src/main/res/layout/gpodnet_podcast_list.xml14
1 files changed, 12 insertions, 2 deletions
diff --git a/app/src/main/res/layout/gpodnet_podcast_list.xml b/app/src/main/res/layout/gpodnet_podcast_list.xml
index d8b06e4f7..ae0a400f1 100644
--- a/app/src/main/res/layout/gpodnet_podcast_list.xml
+++ b/app/src/main/res/layout/gpodnet_podcast_list.xml
@@ -1,10 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
-
-<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
+<RelativeLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
+ <androidx.appcompat.widget.Toolbar
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="?attr/actionBarSize"
+ android:theme="?attr/actionBarTheme"
+ app:navigationIcon="?homeAsUpIndicator"
+ android:id="@+id/toolbar"/>
+
<GridView
android:id="@+id/gridView"
android:layout_width="match_parent"
@@ -18,6 +27,7 @@
android:paddingTop="@dimen/list_vertical_padding"
android:stretchMode="columnWidth"
android:verticalSpacing="8dp"
+ android:layout_below="@id/toolbar"
tools:listitem="@layout/gpodnet_podcast_listitem" />
<ProgressBar