Android控制項:RadioButton(單選button)

來源:互聯網
上載者:User

標籤:name   nts   button   end   menu   htm   options   action   items   



首先,在布局檔案 activity_main.xml中注冊一個RadioGroup,並為RadioGroup設定監聽,圖中兩個RadioButton為一個RadioGroup。


activity_main.xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    xmlns:tools="http://schemas.android.com/tools"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical"    tools:context=".MainActivity">    <TextView android:text="@string/hello_world"        android:layout_width="wrap_content"        android:layout_height="wrap_content" />    <RadioGroup        android:id="@+id/radioGroupID"        android:layout_width="wrap_content"        android:layout_height="wrap_content" >        <RadioButton            android:id="@+id/femaleGroupID"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="female"            />        <RadioButton            android:id="@+id/maleGroupID"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:text="male"/>    </RadioGroup></LinearLayout>



MainActivity.java

import android.support.v7.app.ActionBarActivity;import android.os.Bundle;import android.view.Menu;import android.view.MenuItem;import android.widget.RadioButton;import android.widget.RadioGroup;public class MainActivity extends ActionBarActivity {    private RadioGroup radioGroup;    private RadioButton femaleRadioButton;    private RadioButton maleRadioButton;    @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        //載入布局檔案        setContentView(R.layout.activity_main);        //擷取執行個體        radioGroup=(RadioGroup)findViewById(R.id.radioGroupID);        femaleRadioButton=(RadioButton)findViewById(R.id.femaleGroupID);        maleRadioButton=(RadioButton)findViewById(R.id.maleGroupID);        //設定監聽        radioGroup.setOnCheckedChangeListener(new RadioGroupListener());    }    //定義一個RadioGroup的OnCheckedChangeListener    //RadioGroup  綁定的是RadioGroup.OnCheckedChangeListener    //CheckBox    綁定的是CompoundButton.OnCheckedChangeListener 或者 view.OnClickListener     class RadioGroupListener implements RadioGroup.OnCheckedChangeListener{        @Override        public void onCheckedChanged(RadioGroup group, int checkedId) {            if (checkedId==femaleRadioButton.getId()){                System.out.println("選中了female!");            }else if (checkedId==maleRadioButton.getId()){                System.out.println("選中了male!");            }        }    }    @Override    public boolean onCreateOptionsMenu(Menu menu) {        // Inflate the menu; this adds items to the action bar if it is present.        getMenuInflater().inflate(R.menu.menu_main, menu);        return true;    }    @Override    public boolean onOptionsItemSelected(MenuItem item) {        // Handle action bar item clicks here. The action bar will        // automatically handle clicks on the Home/Up button, so long        // as you specify a parent activity in AndroidManifest.xml.        int id = item.getItemId();        //noinspection SimplifiableIfStatement        if (id == R.id.action_settings) {            return true;        }        return super.onOptionsItemSelected(item);    }}


日誌顯示範範例如以下:


   





Android控制項:RadioButton(單選button)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.