使用edittext作为单词检查器

时间:2015-05-11 15:50:18

标签: android basic4android

所以我对java&的世界不熟悉android编码编码。 基本上我想制作一个代码检查器来检查输入的代码是否正确。如果是,那么它会给出消息" Code Verified"。

举个例子,我输入' Test',这应该被接受。但是当我编译代码时,它无法正常工作。

这是我目前的代码

  Sub Button1_Click
If PromoCode.Text="Test" Then
  Msgbox("Code Verified")
Else
  Msgbox("That code is incorrect")
End If
    PromoCode.text=""
End Sub

1 个答案:

答案 0 :(得分:1)

从我的头脑中,这应该有效:

Button button1 = (Button) findViewById(R.id."the ID of the button");
EditText PromoCode = (EditText) findViewById(R.id."the ID of the textbox");

button1.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View v) {

      if(PromoCode.getText == "Test"){ 
        Toast toast = Toast.makeText(getApplicationContext(), "Code Verified", Toast.LENGTH_SHORT);
        toast.show();
      }else{
        Toast toast = Toast.makeText(getApplicationContext(), "That code is incorrect", Toast.LENGTH_SHORT);
        toast.show();
      };

      PromoCode.setText = "";

   }
 });