ユーザー サインアップまたはサインイン プロセスを実行したくありません。ユーザーのみの gmail/email を入力し、[続行] ボタンを押します。ユーザーがボタンを押した場合、データベースにGmailアドレスのみを保存したい. Javaコードでどのように行うのですか?
これが私の単純なxmlコードです....
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".MainActivity">
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Enter your gmail here"
android:textColor="@color/colorPrimary"
android:textSize="30dp"
android:layout_gravity="center"
android:textAlignment="center"
android:layout_marginTop="200dp"/>
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:inputType="textEmailAddress"
android:hint="Enter your Gmail here"
android:layout_marginLeft="40dp"
android:layout_marginRight="40dp"/>
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="To Contunue"
android:textAllCaps="false"
android:layout_marginTop="8dp"
android:layout_marginLeft="70dp"
android:layout_marginRight="70dp"/>
</LinearLayout>