summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorTaco <SkytkRSfan3895@gmail.com>2022-01-04 05:37:26 -0500
committerGitHub <noreply@github.com>2022-01-04 11:37:26 +0100
commit6154c8a282ce4b83654bf130ad506948fd2f2fc7 (patch)
tree7e623fcf3845030a95dc8468cf70008c47a2dfa2 /core
parent8568226468e7377e273410847a97ebf8a1d7e5e7 (diff)
downloadantennapod-6154c8a282ce4b83654bf130ad506948fd2f2fc7.zip
Update Balloon library (#5584)
Diffstat (limited to 'core')
-rw-r--r--core/src/main/res/layout/popup_bubble_view.xml55
1 files changed, 28 insertions, 27 deletions
diff --git a/core/src/main/res/layout/popup_bubble_view.xml b/core/src/main/res/layout/popup_bubble_view.xml
index 6b2e16f99..cc93bec72 100644
--- a/core/src/main/res/layout/popup_bubble_view.xml
+++ b/core/src/main/res/layout/popup_bubble_view.xml
@@ -1,40 +1,41 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="16dp">
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="16dp">
<TextView
- android:layout_width="match_parent"
- android:textColor="?attr/colorOnSecondary"
- android:layout_height="wrap_content"
- android:lines="3"
- android:id="@+id/balloon_message"/>
+ android:id="@+id/balloon_message"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textColor="?attr/colorOnSecondary"
+ android:lines="3" />
<LinearLayout
- android:orientation="horizontal"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="8dp"
- android:gravity="end">
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="horizontal"
+ android:layout_marginTop="4dp"
+ android:gravity="end">
<Button
- style="@style/Widget.MaterialComponents.Button.TextButton"
- android:textColor="?attr/colorOnSecondary"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/no"
- android:id="@+id/balloon_button_negative"/>
+ android:id="@+id/balloon_button_negative"
+ android:layout_width="wrap_content"
+ android:layout_height="36dp"
+ android:textColor="?attr/colorOnSecondary"
+ android:text="@string/no"
+ style="@style/Widget.MaterialComponents.Button.TextButton" />
<Button
- style="@style/Widget.MaterialComponents.Button.TextButton"
- android:textColor="?attr/colorOnSecondary"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="@string/yes"
- android:id="@+id/balloon_button_positive"/>
+ android:id="@+id/balloon_button_positive"
+ android:layout_width="wrap_content"
+ android:layout_height="36dp"
+ android:textColor="?attr/colorOnSecondary"
+ android:text="@string/yes"
+ style="@style/Widget.MaterialComponents.Button.TextButton" />
</LinearLayout>
+
</LinearLayout>