【Android Studio】EditTextにPlaceHolderを設定する方法!
この記事からわかること
- Android StudioでEditTextにplaceholderを設置する方法
- hint属性とは?
index
[open]
\ アプリをリリースしました /
友達や家族の誕生日をメモ!通知も届く-みんなの誕生日-
posted withアプリーチ
環境
- Android Studio:Flamingo
- Kotlin:1.8.20
EditTextにPlaceHolderを設置する方法
Android StudioでEditTextに以下のようなPlaceHolderを設置するにはhint
属性に値を渡します。これでユーザーが入力前に値の参考になるような入力例を表示することが可能です。
<EditText
android:id="@+id/user_name_edit"
android:layout_width="345dp"
android:layout_height="44dp"
android:layout_marginTop="30dp"
android:background="#e7e7e7"
android:ems="10"
android:inputType="text"
android:padding="8dp"
android:hint="Name"
app:layout_constraintBottom_toTopOf="@+id/register_button"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
指定する際にplaceholder
ってことが多いのでhint
とは思わず少し探したので共有しておきます。
まだまだ勉強中ですので間違っている点や至らぬ点がありましたら教えていただけると助かります。
ご覧いただきありがとうございました。