summaryrefslogtreecommitdiff
path: root/app/src
diff options
context:
space:
mode:
authorByteHamster <info@bytehamster.com>2019-11-20 18:28:25 +0100
committerByteHamster <info@bytehamster.com>2019-11-20 18:28:25 +0100
commit51840ee5f55696672eafdb3b81033724579ec680 (patch)
tree671730ff223bfb624facd8b68fe92ad3bea1e0b7 /app/src
parentece45c7cac5935d68596f4354bfe7e94cc97bfc3 (diff)
downloadAntennaPod-51840ee5f55696672eafdb3b81033724579ec680.zip
Use a single shade of blue on the add podcast screen
Diffstat (limited to 'app/src')
-rw-r--r--app/src/main/res/layout/quick_feed_discovery.xml27
1 files changed, 11 insertions, 16 deletions
diff --git a/app/src/main/res/layout/quick_feed_discovery.xml b/app/src/main/res/layout/quick_feed_discovery.xml
index 561eadf45..3e2b5bf5b 100644
--- a/app/src/main/res/layout/quick_feed_discovery.xml
+++ b/app/src/main/res/layout/quick_feed_discovery.xml
@@ -13,32 +13,27 @@
android:padding="8dp"
android:orientation="vertical">
- <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content"
- android:orientation="horizontal">
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal">
<TextView
- android:layout_width="wrap_content"
+ android:layout_width="0dip"
android:layout_height="wrap_content"
android:text="@string/discover"
android:textSize="18sp"
android:layout_marginBottom="8dp"
+ android:layout_weight="1"
android:textColor="?android:attr/textColorPrimary"/>
- <TextView
- android:layout_width="0dp"
+ <Button
+ android:layout_width="wrap_content"
android:layout_height="wrap_content"
+ android:minHeight="0dp"
+ android:minWidth="0dp"
android:text="@string/discover_more"
- android:gravity="end"
- android:textAlignment="viewEnd"
- android:textSize="18sp"
- android:background="?android:attr/selectableItemBackground"
- android:layout_marginBottom="8dp"
- android:paddingStart="8dp"
- android:paddingEnd="8dp"
- android:paddingLeft="8dp"
- android:paddingRight="8dp"
- android:layout_weight="1"
android:id="@+id/discover_more"
- android:textColor="@color/antennapod_blue"/>
+ style="?android:attr/buttonBarButtonStyle"/>
</LinearLayout>
<RelativeLayout