中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android中RadionButton與CheckBox的應用

發布時間:2020-06-13 04:58:19 來源:網絡 閱讀:397 作者:Java大白 欄目:移動開發
//RadioGroup中xml文件的配置
<RadioGroup 
        
        android:id="@+id/radiogroupid"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        >
        <RadioButton 
            android:id="@+id/femalebutton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="female"
            />
        <RadioButton 
            android:id="@+id/malebutton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="male"
            />
        
    </RadioGroup>
    
    //RadioGroup中activity中代碼片段
    public class MainActivity extends Activity {
	private RadioGroup radiogroup;
	private RadioButton femalebutton,malebutton;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        radiogroup=(RadioGroup)findViewById(R.id.radiogroupid);
        femalebutton=(RadioButton)findViewById(R.id.femalebutton);
        malebutton=(RadioButton)findViewById(R.id.malebutton);
        RadioGroupLis r=new RadioGroupLis();
        radiogroup.setOnCheckedChangeListener(r);
    }
    
    
    class RadioGroupLis implements OnCheckedChangeListener{

		@Override
		public void onCheckedChanged(RadioGroup group, int checkedId) {
			if(checkedId==femalebutton.getId())
			{
				Toast.makeText(getApplicationContext(), "選中female", Toast.LENGTH_LONG).show();
			}else if(checkedId==malebutton.getId())
			{
				Toast.makeText(getApplicationContext(), "選中male", Toast.LENGTH_SHORT).show();
			}
		}
    	
    	
    	
    }
    
    CheckBox中xml文件
    <CheckBox 
	    android:id="@+id/eatid"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:text="吃飯"
	    
	    />
	<CheckBox 
	    android:id="@+id/playid"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:text="游戲"
	    
	    />
	<CheckBox 
	    android:id="@+id/sleepid"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
	    android:text="睡覺"
	    
	    />
    
    //checkbox中的activity文件
    
    public class MainActivity extends Activity {
	private CheckBox eatbox,sleepbox,playbox;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        eatbox=(CheckBox)findViewById(R.id.eatid);
        sleepbox=(CheckBox)findViewById(R.id.sleepid);
        playbox=(CheckBox)findViewById(R.id.playid);
        onBoxLis listener=new onBoxLis();
        eatbox.setOnClickListener(listener);
        sleepbox.setOnClickListener(listener);
        playbox.setOnClickListener(listener);
        
    }
    
    //onclickListener的使用方法
    class onBoxLis implements OnClickListener{

		@Override
		public void onClick(View v) {
			CheckBox box=(CheckBox)v;
			if(box.isChecked())
			{
			Toast.makeText(getApplicationContext(), "被選中",
				     Toast.LENGTH_SHORT).show();
			}else{
				Toast.makeText(getApplicationContext(), "未被選中", Toast.LENGTH_LONG).show();
			}
		}
    	
    }


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博白县| 铜鼓县| 田阳县| 梅州市| 花垣县| 潢川县| 大名县| 常熟市| 两当县| 南川市| 吉林市| 鄯善县| 成武县| 报价| 宁阳县| 上思县| 运城市| 瑞金市| 尼木县| 北辰区| 锡林郭勒盟| 上虞市| 遂溪县| 台前县| 邹城市| 罗平县| 衡阳县| 乐清市| 霍州市| 嘉峪关市| 乌恰县| 大渡口区| 汉阴县| 安丘市| 绍兴县| 昌宁县| 东港市| 元阳县| 杭州市| 普宁市| 时尚|