>  기사  >  백엔드 개발  >  android RadioGroup checkBox 버튼 애플리케이션

android RadioGroup checkBox 버튼 애플리케이션

巴扎黑
巴扎黑원래의
2016-12-20 15:04:461305검색

첫 번째 단계는 Android 프로젝트를 만드는 것입니다.

두 번째 단계는 생성된 res/layout/main.xml을 수정하는 것입니다

일반 복사본을 클립보드 인쇄로 보시겠습니까?

안드로이드 :orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

android:id="@+id/checkBox"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android: text="CheckBox1" />

android:id="@+id/checkBox1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="Checkbox 2" />

android:id ="@+id /radioGroup"

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent">

<라디오버튼                                                          android:text=" 베이징" />                                                                                            > android:text="Tianjin" /> android:id="@+id/radion3"

android:layout_width="wrap_content" android:layout_height="wrap _content "

android:text="Shanghai" />

android:layout_width="wrap _content" android:layout_height="wrap_content"

android:text="Chongqing" />

세 번째 단계는 메인 코드를 추가하는 것입니다

클립보드 인쇄로 보기?

import android.app.Activity;

import android.os.Bundle;

import android.widget.CheckBox; CombineButton;

import android.widget.RadioButton;

import android.widget.RadioGroup;

import android.widget.CompoundButton.OnCheckedChangeListener; > /** 활동이 처음 생성될 때 호출됩니다. */

 

      

    RadioButton  r1 = null;  

    RadioButton  r2 = null;  

    RadioButton  r3 = null;  

    RadioButton  r4 = null;  

      

    @Override  

    public void onCreate(Bundle savedInstanceState) {  

        super.onCreate(savedInstanceState);  

        setContentView(R.layout.main);  

          

        CheckBox checkBox = (CheckBox) findViewById(R.id.checkBox);   

        CheckBox checkBox1 = (CheckBox) findViewById(R.id.checkBox1);  

        //获得单选按钮组  

        RadioGroup radioGroup = (RadioGroup)findViewById(R.id.radioGroup);  

        //获得单选按钮  

        r1 = (RadioButton )findViewById(R.id.radion1);  

        r2 = (RadioButton )findViewById(R.id.radion2);  

        r3 = (RadioButton )findViewById(R.id.radion3);  

        r4 = (RadioButton )findViewById(R.id.radion4);  

          

        checkBox.setChecked(true);   

          

        r1.setClickable(true);  

        //监听多选按钮  

        checkBox.setOnCheckedChangeListener(this);  

        checkBox1.setOnCheckedChangeListener(this);  

        //监听单选按钮  

        radioGroup.setOnCheckedChangeListener(mChangeRadio);  

          

    }


성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.