Yuito-app-android/app/src/main/res/layout/activity_access_token_login...

42 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
android:orientation="vertical">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/domainEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:hint="@string/hint_domain"
android:inputType="textUri" />
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/accessTokenEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="@string/hint_access_token"
android:inputType="textNoSuggestions"
android:lines="1"
tools:ignore="Autofill" />
<Button
android:id="@+id/authorizeButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/action_authorize" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/logTextView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
</LinearLayout>