在程序界面建立三项单选框RadioButton组件,分别表示三门课程,建立一个Button组件和一个TextView组件。要求单选后点击按钮后,在TextView组件中显示“我喜欢:xxx”。
时间: 2024-03-11 15:49:26 浏览: 39
JRadioButton(单选按钮)组件
好的,这个问题很简单,我可以帮你解答。
首先,在布局文件中添加三个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="wrap_content"
android:layout_height="wrap_content"
android:text="课程1"/>
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="课程2"/>
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="wrap_content"
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="确定"/>
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:text="我喜欢:"/>
```
然后在代码中获取这些组件,并为Button组件设置点击事件,在点击事件中获取选中的RadioButton组件的文本内容,并设置到TextView组件中,代码如下:
```java
public class MainActivity extends AppCompatActivity {
private RadioGroup radioGroup;
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);
radioGroup = findViewById(R.id.radioGroup);
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) {
int radioButtonId = radioGroup.getCheckedRadioButtonId();
RadioButton radioButton = findViewById(radioButtonId);
String text = radioButton.getText().toString();
textView.setText("我喜欢:" + text);
}
});
}
}
```
这样就完成了,运行程序后选择一个RadioButton组件,点击按钮,就可以在TextView组件中看到“我喜欢:xxx”了。
阅读全文