summaryrefslogtreecommitdiff
path: root/app/src
diff options
context:
space:
mode:
authorDarrell <52300159+dev-darrell@users.noreply.github.com>2020-10-01 22:55:32 +0100
committerGitHub <noreply@github.com>2020-10-01 23:55:32 +0200
commit31ac0a53224993e0415fcdf748c1a178c0e5676b (patch)
tree43d8291e3327855978c2b9fed94b99d6f4b80fb6 /app/src
parent923be5bfdd8168325079968df8fb14de4f7b59b4 (diff)
downloadAntennaPod-31ac0a53224993e0415fcdf748c1a178c0e5676b.zip
Added Style for TextViews in Add Podcast screen (#4483)
Diffstat (limited to 'app/src')
-rw-r--r--app/src/main/res/layout/addfeed.xml42
1 files changed, 6 insertions, 36 deletions
diff --git a/app/src/main/res/layout/addfeed.xml b/app/src/main/res/layout/addfeed.xml
index b3d7aef72..32b4a85d4 100644
--- a/app/src/main/res/layout/addfeed.xml
+++ b/app/src/main/res/layout/addfeed.xml
@@ -90,84 +90,54 @@
android:id="@+id/btn_add_via_url"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:drawablePadding="8dp"
app:drawableStartCompat="?attr/feed"
app:drawableLeftCompat="?attr/feed"
- android:paddingTop="8dp"
- android:paddingBottom="8dp"
- android:background="?android:attr/selectableItemBackground"
- android:textColor="?android:attr/textColorPrimary"
- android:clickable="true"
+ style="@style/AddPodcastTextView"
android:text="@string/add_podcast_by_url"/>
<TextView
android:id="@+id/btn_search_itunes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:drawablePadding="8dp"
app:drawableStartCompat="?attr/action_search"
app:drawableLeftCompat="?attr/action_search"
- android:paddingTop="8dp"
- android:paddingBottom="8dp"
- android:background="?android:attr/selectableItemBackground"
- android:textColor="?android:attr/textColorPrimary"
- android:clickable="true"
+ style="@style/AddPodcastTextView"
android:text="@string/search_itunes_label"/>
<TextView
android:id="@+id/btn_search_fyyd"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:drawablePadding="8dp"
app:drawableStartCompat="?attr/action_search"
app:drawableLeftCompat="?attr/action_search"
- android:paddingTop="8dp"
- android:paddingBottom="8dp"
- android:background="?android:attr/selectableItemBackground"
- android:textColor="?android:attr/textColorPrimary"
- android:clickable="true"
+ style="@style/AddPodcastTextView"
android:text="@string/search_fyyd_label"/>
<TextView
android:id="@+id/btn_search_gpodder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:drawablePadding="8dp"
app:drawableStartCompat="?attr/action_search"
app:drawableLeftCompat="?attr/action_search"
- android:paddingTop="8dp"
- android:paddingBottom="8dp"
- android:background="?android:attr/selectableItemBackground"
- android:textColor="?android:attr/textColorPrimary"
- android:clickable="true"
+ style="@style/AddPodcastTextView"
android:text="@string/browse_gpoddernet_label"/>
<TextView
android:id="@+id/btn_search_podcastindex"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:drawablePadding="8dp"
app:drawableStartCompat="?attr/action_search"
app:drawableLeftCompat="?attr/action_search"
- android:paddingTop="8dp"
- android:paddingBottom="8dp"
- android:background="?android:attr/selectableItemBackground"
- android:textColor="?android:attr/textColorPrimary"
- android:clickable="true"
+ style="@style/AddPodcastTextView"
android:text="@string/search_podcastindex_label"/>
<TextView
android:id="@+id/btn_opml_import"
android:layout_width="match_parent"
android:layout_height="wrap_content"
- android:drawablePadding="8dp"
app:drawableStartCompat="?attr/av_download"
app:drawableLeftCompat="?attr/av_download"
- android:paddingTop="8dp"
- android:paddingBottom="8dp"
- android:background="?android:attr/selectableItemBackground"
- android:textColor="?android:attr/textColorPrimary"
- android:clickable="true"
+ style="@style/AddPodcastTextView"
android:text="@string/opml_import_label"/>
</LinearLayout>
</ScrollView>