要实现点击按钮显示文本框信息,你可以按照以下步骤进行操作:
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="显示信息" />
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:enabled="false" />
Button button = findViewById(R.id.button);
final EditText editText = findViewById(R.id.editText);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// 在这里获取要显示的文本信息
String text = "你要显示的信息";
// 将文本信息显示在文本框中
editText.setText(text);
}
});
在上述代码中,我们通过button.setOnClickListener()方法来设置按钮的点击监听器。当按钮被点击时,onClick()方法会被调用。在该方法中,你可以获取要显示的文本信息,并通过editText.setText()方法将文本信息显示在文本框中。
注意,为了让文本框处于可编辑状态,你需要将EditText的属性android:enabled设置为true。或者,你也可以使用android:editable属性,将其设置为true。