2017-07-22 77 views
0

無論何時我想在EditText字段中編寫一個字符串,默認消息(例如本例中的「輸入消息」)不會被刪除,而必須手動刪除它才能看到我的字符串。現在,如果我輸入一個新的字符串,它會附加到EditText中的輸入消息字符串。Android Studio EditText默認字符串

是否有任何方式在EditText中的默認字符串被刪除,只要我輸入一個字符串?

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

回答

1

請勿使用'文本'。使用

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