0
我的意圖是將一個Edittext和一個按鈕放在下面,當用戶放置一個特定的單詞並單擊該按鈕時,該值是正確的,並且所有其他不同的單詞都是錯誤的。如何用代碼識別它?如何使用正確的值和其他所有錯誤的編輯文本
我的意圖是將一個Edittext和一個按鈕放在下面,當用戶放置一個特定的單詞並單擊該按鈕時,該值是正確的,並且所有其他不同的單詞都是錯誤的。如何用代碼識別它?如何使用正確的值和其他所有錯誤的編輯文本
首先創建EDITTEXT和按鈕
<EditText
android:id="@+id/editText1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="80dp"
android:layout_marginTop="59dp"
android:ems="10" >
<requestFocus />
</EditText>
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="Button" />
那麼剩下的就是容易..
EditText txt = (EditText) findViewById(R.id.editText1);
String Answer = txt.getText().toString();
Button check = (Button) findViewById(R.id.button1);
check.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View arg0) {
if(Answer.equals("your word")){
//correct
} else{
//wrong
}
}
});
我們定義的EditText和按鈕,然後我們從edittext獲取文本並將其轉換爲字符串。之後,當我們的按鈕被點擊時,我們小雞,如果它等於它做的事情...
有人能告訴我爲什麼我被低估了嗎? –
http://mattgemmell.com/2008/12/08/what-have-you-tried/ – Nanomurf
http:// bit .ly/1ef1e1u – invertigo