Android Studio EditText默认String

时间:2017-07-22 20:07:36

标签: android text

每当我想在EditText字段中写一个字符串时,默认消息(例如在这种情况下为“输入消息”)不会被删除,我必须手动删除它才能看到我的字符串。现在,如果我输入一个新字符串,它会附加到EditText中的输入消息字符串。

当我输入字符串时,是否有任何方法可以删除EditText中的默认字符串?

Typing a new string adds the string to the beginning of the default message

1 个答案:

答案 0 :(得分:1)

不要使用' text'。使用

<EditText
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:hint="Enter a message"
    />