我試圖讓我的EditText顯示提示,如「請在此輸入答案」,並且當用戶點擊EditText鍵入他們的答案時,文本應該消失並且爲空他們的答案。提示編輯文本
截至目前,這是我爲我的.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".AnswerActivity" >
<EditText
android:id="@+id/edittxt_answer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine" />
</RelativeLayout>
在我的.java
public class AnswerActivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_answer);
EditText ans = (EditText) findViewById(R.id.edittxt_answer);
//Continue with acitivty....
}