tmap/res/layout/activity_forgot_password.xml
2022-06-10 21:38:30 +09:00

10 lines
1.9 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:gravity="center_horizontal" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android" xmlns:com.amazonaws.mobile.auth.userpools="http://schemas.android.com/apk/res-auto">
<com.amazonaws.mobile.auth.userpools.ForgotPasswordView android:id="@id/forgot_password_view" android:layout_width="fill_parent" android:layout_height="fill_parent">
<TextView android:textAppearance="?android:textAppearanceLarge" android:textColor="@android:color/white" android:id="@id/forgot_password_title" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/user_pools_form_margin" android:text="@string/forgot_password_header" />
<TextView android:textAppearance="?android:textAppearanceSmall" android:textColor="@android:color/white" android:id="@id/forgot_password_message" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/user_pools_intra_group_separation" android:text="@string/forgot_password_body" />
<com.amazonaws.mobile.auth.userpools.FormView android:id="@id/forgot_password_form" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_marginTop="@dimen/user_pools_form_margin" />
<Button android:textSize="@dimen/user_pools_button_text_size" android:textColor="@android:color/white" android:id="@id/forgot_password_button" android:layout_width="fill_parent" android:layout_height="@dimen/user_pools_button_height" android:layout_marginTop="@dimen/user_pools_intra_group_separation" android:text="@string/forgot_password_button_hint" android:onClick="forgotPassword" android:textAllCaps="false" />
</com.amazonaws.mobile.auth.userpools.ForgotPasswordView>
</LinearLayout>