要设置Android中的hint属性,您可以在布局文件中使用以下方式之一:
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter your name" />
EditText editText = findViewById(R.id.editText);
editText.setHint("Enter your name");