diff options
author | cyBerta <cyberta@riseup.net> | 2023-08-05 23:41:15 +0200 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2023-08-05 23:41:15 +0200 |
commit | c11be87a199070d02f80516a1b8fbd17079ca6c5 (patch) | |
tree | 7c2b9a79448994209f5e4fe3cabedf9f831a4253 /app/src/main/res/layout | |
parent | ec1ab7d2bf2118796e8d49b3659a6053a8aeb8d6 (diff) |
tweak next and cancel button appearance in setup flow
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_setup.xml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/src/main/res/layout/activity_setup.xml b/app/src/main/res/layout/activity_setup.xml index 26ef2285..d321f751 100644 --- a/app/src/main/res/layout/activity_setup.xml +++ b/app/src/main/res/layout/activity_setup.xml @@ -2,6 +2,7 @@ <androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" + xmlns:tools="http://schemas.android.com/tools" android:orientation="vertical" android:weightSum="1" xmlns:app="http://schemas.android.com/apk/res-auto"> @@ -129,7 +130,7 @@ </androidx.cardview.widget.CardView> </LinearLayout> - <Button + <androidx.appcompat.widget.AppCompatButton style="@style/BitmaskSetupButton" android:id="@+id/setup_next_button" android:layout_width="wrap_content" @@ -137,9 +138,11 @@ android:layout_alignParentEnd="true" android:layout_alignParentBottom="true" android:text="@string/next" + tools:visibility="visible" + /> - <Button + <androidx.appcompat.widget.AppCompatButton style="@style/BitmaskSetupButton" android:id="@+id/setup_cancel_button" android:layout_width="wrap_content" @@ -148,6 +151,7 @@ android:layout_alignParentBottom="true" android:text="@string/cancel" android:visibility="gone" + tools:visibility="visible" /> </RelativeLayout> </androidx.appcompat.widget.LinearLayoutCompat> |