国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁(yè) > 系統(tǒng) > Android > 正文

android RadioGroup的使用方法

2020-02-21 17:39:37
字體:
供稿:網(wǎng)友
創(chuàng)建一個(gè)MainActivity.java的主類


android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
android:id="@+id/radiobutton_textview"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:textSize="18dip"
android:textStyle="bold"
android:background="@android:drawable/title_bar"
android:textAppearance="?android:attr/textAppearanceLarge"
android:gravity="center_vertical"
/>
android:id="@+id/group"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
android:id="@+id/button1"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:textSize="20dip"
android:paddingLeft="30dip"
android:text="Android新手"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"/>
android:layout_width="fill_parent"
android:layout_height="1px"
android:background="?android:attr/listDivider"
/>
android:id="@+id/button2"
android:layout_width="fill_parent"
android:layout_height="50dip"
android:textSize="20dip"
android:paddingLeft="30dip"
android:text="Android高手"
android:button="@null"
android:drawableRight="@android:drawable/btn_radio"/>



Xml代碼

package endual.radio;
import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.RadioGroup.OnCheckedChangeListener;
import android.widget.TextView;
public class MainActivity extends Activity {
private TextView textView;
private RadioGroup group;
private RadioButton rb1 ;
private RadioButton rb2 ;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
textView = (TextView) findViewById(R.id.radiobutton_textview);
group = (RadioGroup) findViewById(R.id.group);
this.rb1 = (RadioButton) this.findViewById(R.id.button1) ;
this.rb2 = (RadioButton) this.findViewById(R.id.button2) ;

// 單選按鈕組監(jiān)聽事件
group.setOnCheckedChangeListener(new OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
// 根據(jù)ID判斷選擇的按鈕
if (checkedId == R.id.button1) {

textView.setText("Android新手");
rb1.setText("我是1") ;
String msg = rb1.getText().toString() ; //獲取單獨(dú)的radioButton的按鈕
rb2.setText(msg) ;
//System.out.println();
} else {
textView.setText("Android高手");
rb2.setText("我是2") ;
}
}
});
}
}

RadioGroup注冊(cè)監(jiān)聽事件OnCheckedChangeListener(),在onCheckedChanged實(shí)現(xiàn)業(yè)務(wù)邏輯。
發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 游戏| 上高县| 焦作市| 福泉市| 灵山县| 仪征市| 五莲县| 博野县| 波密县| 江山市| 锦屏县| 平山县| 蒙阴县| 长兴县| 湖北省| 托克托县| 清丰县| 饶平县| 芜湖市| 公主岭市| 张家港市| 习水县| 云和县| 星座| 南漳县| 布尔津县| 沐川县| 安图县| 泗水县| 仁怀市| 芒康县| 通化县| 崇仁县| 颍上县| 陵川县| 博白县| 安丘市| 永胜县| 青田县| 偏关县| 班戈县|