mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
afd1a26e4a
* add submenu to 'Explore Other Options' * move 'Manual Login' to 'Explore Other Options' * clearer titles, even if they are repetive * move 'Scan QR' to 'Other'; this allows us to make 'Other' more outstanding * cleanup layout * tweak wording to 'Use Other Server' pointing to 'List in Browser', 'Classic Login', 'Scan Invite Code' * use a standard secondary button for 'Use Other Server' * show default onboarding server name * reword to 'List Chatmail Servers' * always close other-sign-up-options on tapping an option * clarify that 'classic login' is about e-mail
50 lines
1.6 KiB
XML
50 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="16dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:layout_marginTop="32dp"
|
|
android:gravity="center_horizontal">
|
|
|
|
<Button
|
|
style="@style/ButtonSecondary"
|
|
android:id="@+id/use_other_server"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="24dp"
|
|
android:paddingRight="24dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:text="@string/instant_onboarding_other_server"/>
|
|
|
|
<Button
|
|
style="@style/ButtonSecondary"
|
|
android:id="@+id/login_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="24dp"
|
|
android:paddingRight="24dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:text="@string/manual_account_setup_option"/>
|
|
|
|
<Button
|
|
style="@style/ButtonSecondary"
|
|
android:id="@+id/scan_qr_button"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="24dp"
|
|
android:paddingRight="24dp"
|
|
android:text="@string/scan_invitation_code"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|