【移動(dòng)應(yīng)用開(kāi)發(fā)技術(shù)】Android學(xué)習(xí)筆記:常用控件 RadioGroup和CheckBox_第1頁(yè)
【移動(dòng)應(yīng)用開(kāi)發(fā)技術(shù)】Android學(xué)習(xí)筆記:常用控件 RadioGroup和CheckBox_第2頁(yè)
【移動(dòng)應(yīng)用開(kāi)發(fā)技術(shù)】Android學(xué)習(xí)筆記:常用控件 RadioGroup和CheckBox_第3頁(yè)
【移動(dòng)應(yīng)用開(kāi)發(fā)技術(shù)】Android學(xué)習(xí)筆記:常用控件 RadioGroup和CheckBox_第4頁(yè)
【移動(dòng)應(yīng)用開(kāi)發(fā)技術(shù)】Android學(xué)習(xí)筆記:常用控件 RadioGroup和CheckBox_第5頁(yè)
免費(fèi)預(yù)覽已結(jié)束,剩余1頁(yè)可下載查看

下載本文檔

版權(quán)說(shuō)明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡(jiǎn)介

【移動(dòng)應(yīng)用開(kāi)發(fā)技術(shù)】Android學(xué)習(xí)筆記:常用控件RadioGroup和CheckBox

RadioGroup和CheckBox是android的常用控件,本文自做簡(jiǎn)單介紹和學(xué)習(xí)筆記,所以所用的控件樣式選用android默認(rèn)的樣式。先看下代碼實(shí)現(xiàn)的效果圖圖中,上面兩個(gè)(male和female)為一個(gè)RadioGroup中的兩個(gè)RadioButton,下面三個(gè)為CheckBox。一個(gè)RadioGroup里面的內(nèi)容只可單選,CheckBox可多選。接下來(lái)是代碼部分布局文件代碼activity_main.xml:<LinearLayout

xmlns:android="/apk/res/android"

xmlns:tools="/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

tools:context="com.jam.radiogroupandcheckbox.MainActivity"

>

<RadioGroup

android:id="@+id/id_radiogroup"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

>

<RadioButton

android:id="@+id/id_radiobutton_male"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="male"

/>

<RadioButton

android:id="@+id/id_radiobutton_female"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="female"

/>

</RadioGroup>

<CheckBox

android:id="@+id/id_checkbox_one"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="one"

/>

<CheckBox

android:id="@+id/id_checkbox_two"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="two"

/>

<CheckBox

android:id="@+id/id_checkbox_three"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="three"

/>

</LinearLayout>采用的是線性布局,代碼比較簡(jiǎn)單,就是一個(gè)RadioGroup包含了兩個(gè)RadioButton(想要多少RadioButton就加多少個(gè)),還有三個(gè)CheckBox。接下來(lái)是MainActivity.java:package

com.jam.radiogroupandcheckbox;

import

android.app.Activity;

import

android.os.Bundle;

import

android.util.Log;

import

android.view.Menu;

import

android.widget.CheckBox;

import

android.widget.CompoundButton;

import

android.widget.RadioButton;

import

android.widget.RadioGroup;

import

android.widget.RadioGroup.OnCheckedChangeListener;

public

class

MainActivity

extends

Activity

{

//聲明控件

private

RadioGroup

radioGroup;

private

CheckBox

checkBox_one;

private

CheckBox

checkBox_two;

private

CheckBox

checkBox_three;

@Override

protected

void

onCreate(Bundle

savedInstanceState)

{

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

radioGroup

=

(RadioGroup)

findViewById(R.id.id_radiogroup);

checkBox_one

=

(CheckBox)

findViewById(R.id.id_checkbox_one);

checkBox_two

=

(CheckBox)

findViewById(R.id.id_checkbox_two);

checkBox_three

=

(CheckBox)

findViewById(R.id.id_checkbox_three);

/**

*

radioGroup綁定一個(gè)匿名內(nèi)部類android.widget.RadioGroup.OnCheckedChangeListener

*/

radioGroup.setOnCheckedChangeListener(new

OnCheckedChangeListener()

{

@Override

public

void

onCheckedChanged(RadioGroup

group,

int

checkedId)

{

switch

(checkedId)

{

case

R.id.id_radiobutton_male:

Log.i("radioGroup",

"male");

break;

case

R.id.id_radiobutton_female:

Log.i("radioGroup",

"female");

break;

}

}

});

//給三個(gè)CheckBox綁定監(jiān)聽(tīng)器

checkBox_one.setOnCheckedChangeListener(new

myOnCheckedChangeListener());

checkBox_two.setOnCheckedChangeListener(new

myOnCheckedChangeListener());

checkBox_three.setOnCheckedChangeListener(new

myOnCheckedChangeListener());

}

/**

*

注意CheckBox綁定的Listener是android.widget.CompoundButton.OnCheckedChangeListener

*

@author

jam

*

*/

private

class

myOnCheckedChangeListener

implements

android.widget.CompoundButton.OnCheckedChangeListener

{

@Override

public

void

onCheckedChanged(CompoundButton

buttonView,

boolean

isChecked)

{

switch

(buttonView.getId())

{

case

R.id.id_checkbox_one:

Log.i("checkbox",

"one");

break;

case

R.id.id_checkbox_two:

Log.i(

溫馨提示

  • 1. 本站所有資源如無(wú)特殊說(shuō)明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁(yè)內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒(méi)有圖紙預(yù)覽就沒(méi)有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫(kù)網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

最新文檔

評(píng)論

0/150

提交評(píng)論