安卓學習之--UI控制項用法 單選 按鈕 下拉框

來源:互聯網
上載者:User

1。單選

.RadioGroup 可將各自不同的RadioButton ,設限於同一個Radio 按鈕組,同一個RadioGroup 組裡的按鈕,只能做出單一選擇(單選題).

 <RadioGroup  android:id="@+id/group"                    android:orientation="horizontal">                    <RadioButton android:layout_width="wrap_content"                        android:layout_height="wrap_content"                        android:text="沒過5年"                        android:checked="true"                        android:id="@+id/rdyear5"                        />                    <RadioButton android:layout_width="wrap_content"                        android:layout_height="wrap_content"                        android:text="過5年"                        android:id="@+id/rdyearno5"                        />                </RadioGroup>

  .java

private RadioGroup group;         private RadioButton rb1 ;  private RadioButton rb2 ;private boolean blflag;group=(RadioGroup) this.findViewById(R.id.group);rb1=(RadioButton) this.findViewById(R.id.rdyear5);rb2=(RadioButton) this.findViewById(R.id.rdyearno5);group.setOnCheckedChangeListener(new checkedlistener());public class checkedlistener implements RadioGroup.OnCheckedChangeListener{@Overridepublic void onCheckedChanged(RadioGroup group, int checkedId) {if(checkedId==R.id.rdyear5){blflag=true;}else if(checkedId==R.id.rdyearno5){blflag=false;}}}

  

按鈕 Button是各種UI中最常用的控制項之一,它同樣也是Android開發中最受歡迎的控制項之一,使用者可以通過觸摸它來觸發一系列事件,要知道一個沒有點擊事件的Button是沒有任何意義的,因為使用者的固定思維是見到它就想去點!

<Button
android:id="@+id/btncal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="計算" />

 

.java

Button btncal=(Button) this.findViewById(R.id.btncal);  //擷取該按鈕控制項 btncal.setOnClickListener(new listener());  //事件private class listener implements View.OnClickListener{@Overridepublic void onClick(View v) {}}

  

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.