私はこれらの行で何かを作ろうとしています:
を使用してヒントを表示android:hint="Email Address"
できますが、ヘルパー テキストを表示できません -これがメールのユーザー名になります
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/et_username"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="15"
android:hint="Username"
app:et_helper="Username is preferably your registered email"/>
</android.support.design.widget.TextInputLayout>`
私が得ているのは、編集テキストの下にある登録済みの電子メールのみであり、ユーザー名はありません。
出力:
任意のポインタをいただければ幸いです。ありがとうございました。