Andr开发:检查EditText的内容是否为空白。如果空白,则在TextView里面显示:“请输入你的姓名!” 点击“确定”按钮后将EditText中的内容显示在TextView中。
时间: 2024-05-07 15:19:16 浏览: 39
好的,对于您的问题,可以使用以下代码实现:
```
Button button = findViewById(R.id.button);
final EditText editText = findViewById(R.id.editText);
final TextView textView = findViewById(R.id.textView);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
String inputText = editText.getText().toString().trim();
if (TextUtils.isEmpty(inputText)) {
textView.setText("请输入你的姓名!");
} else {
textView.setText(inputText);
}
}
});
```
其中,button为确定按钮,editText为输入框,textView为显示框。
在点击确定按钮后,会先获取输入框EditText中的内容,并使用trim()方法去掉首尾空白符。然后判断是否为空,如果为空,则在TextView中显示相应提示;否则,直接将内容显示在TextView中。
阅读全文