Android中点击按钮输出文字
时间: 2024-02-04 19:35:47 浏览: 123
在 Android 中,可以通过在布局文件中添加一个按钮和一个文本框来实现点击按钮输出文字的功能。以下是一个简单的示例:
1. 在布局文件中添加一个按钮和一个文本框:
```
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Click me!"
android:layout_centerInParent="true"/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
android:layout_below="@id/button"
android:layout_centerHorizontal="true"/>
</RelativeLayout>
```
2. 在 Activity 中找到按钮和文本框,并设置按钮的点击事件:
```
public class MainActivity extends AppCompatActivity {
private Button button;
private TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
button = findViewById(R.id.button);
textView = findViewById(R.id.textView);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
textView.setText("Button clicked!");
}
});
}
}
```
这样,当用户点击按钮时,文本框中就会显示 "Button clicked!"。
阅读全文