指定文字提示

使用 EditTexts 時可以指定文字提示。文字提示對於向使用者傳達他們應該在 EditText 中鍵入的內容非常有用。

在 XML 中:

<EditText
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:hint="username" />

提示的內容(在我們的示例中,使用者名稱)可以是你喜歡的任何內容。