Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 安卓單選組件使用,安卓單選組件

安卓單選組件使用,安卓單選組件

編輯:關於android開發

安卓單選組件使用,安卓單選組件


xml:



<RadioGroup android:id="@+id/group1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            >
    <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="radio1"/>
    <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="radio2"/>
    <RadioButton
            android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
            android:text="radio3"/>
</RadioGroup>
<TextView android:text="你的選擇是:"
          android:id="@+id/txtResult"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"/>

java中的代碼:

@Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        TextView textView=(TextView)findViewById(R.id.txtResult);
        RadioGroup radioGroup=(RadioGroup)findViewById(R.id.group1);
        radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup radioGroup, int i) {
                int radioButtonId=radioGroup.getCheckedRadioButtonId();
                RadioButton rb=(RadioButton)helloworld.this.findViewById(radioButtonId);

                textView.setText(rb.getText());
            }
        });
    }

最終效果:

 

 

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved