在程序界面建立三项单选框RadioButton组件,分别表示三门课程,建立一个Button组件和一个TextView组件。要求单选后点击按钮后,在TextView组件中显示“我喜欢:xxx”。
时间: 2024-03-12 09:44:42 浏览: 22
好的,根据你的要求,我可以提供以下的代码实现:
首先,在布局文件中添加三个 RadioButton 和一个 Button 和一个 TextView 组件,代码如下:
```xml
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="课程1" />
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="课程2" />
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="课程3" />
</RadioGroup>
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="确定"
android:layout_gravity="center_horizontal" />
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:textSize="20sp"
android:textAlignment="center"
android:text="选择你喜欢的课程" />
```
然后,在 Activity 中获取这些组件,并设置点击事件,代码如下:
```java
public class MainActivity extends AppCompatActivity {
private RadioButton radioButton1;
private RadioButton radioButton2;
private RadioButton radioButton3;
private Button button;
private TextView textView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
radioButton1 = findViewById(R.id.radioButton1);
radioButton2 = findViewById(R.id.radioButton2);
radioButton3 = findViewById(R.id.radioButton3);
button = findViewById(R.id.button);
textView = findViewById(R.id.textView);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (radioButton1.isChecked()) {
textView.setText("我喜欢:课程1");
} else if (radioButton2.isChecked()) {
textView.setText("我喜欢:课程2");
} else if (radioButton3.isChecked()) {
textView.setText("我喜欢:课程3");
}
}
});
}
}
```
这样,当用户选择了某个 RadioButton 后,点击按钮就会在 TextView 中显示相应的文本了。
阅读全文