我想编写一个代码,以便能够从标准输入中获取一个字符串并将其与一个字符串进行比较我已经在一个 Android 项目中编写了这段代码但不幸的是它停止了
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
EditText text = (EditText) findViewById(R.id.editText1);
TextView text1 = (TextView) findViewById(R.id.textView1);
String str = text.getText().toString();
if(str.equals("yes"))
text1.setText(str);
else
text1.setText(0000);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
谁能帮帮我吗??
提前致谢