標題:
RadioButton
[打印本頁]
作者:
tonyh
時間:
2017-8-12 14:25
標題:
RadioButton
本帖最後由 tonyh 於 2017-8-12 17:48 編輯
RadioButton 元件支援多選一的選取操作。
[attach]2490[/attach]
package com.example.student.myapplication;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
public class MainActivity extends AppCompatActivity {
private TextView tv2;
private RadioButton rb1, rb2, rb3;
private RadioGroup rg;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
tv2= (TextView) findViewById(R.id.textView2);
rb1= (RadioButton) findViewById(R.id.radioButton1);
rb2= (RadioButton) findViewById(R.id.radioButton2);
rb3= (RadioButton) findViewById(R.id.radioButton3);
rg= (RadioGroup) findViewById(R.id.radioGroup);
rg.setOnCheckedChangeListener(myListener);
}
private RadioGroup.OnCheckedChangeListener myListener=new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton rb= (RadioButton) findViewById(checkedId);
tv2.setText(rb.getText());
// if(checkedId==R.id.radioButton1)
// tv2.setText(rb1.getText());
// if(checkedId==R.id.radioButton2)
// tv2.setText(rb2.getText());
// if(checkedId==R.id.radioButton3)
// tv2.setText(rb3.getText());
}
};
}
複製代碼
作者:
林宇翔
時間:
2017-8-19 14:18
此帖僅作者可見
作者:
李允軒
時間:
2017-8-19 14:24
此帖僅作者可見
作者:
張彥承
時間:
2017-8-19 16:24
此帖僅作者可見
作者:
劉得恩
時間:
2018-6-7 14:59
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2