Android 프로 그래 밍 단일 선택 상자 RadioGroup 종합 응용 예시

4546 단어 AndroidRadioGroup
이 사례 는 안 드 로 이 드 프로 그래 밍 단일 선택 상자 RadioGroup 의 용법 을 설명 합 니 다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
오늘 소 개 된 것 은 RadioGroup 의 그룹 이벤트 입 니 다.RadioGroup 은 각각 다른 RadioButton 을 같은 Radio 단추 그룹 으로 설정 할 수 있 습 니 다.같은 RadioGroup 그룹의 단 추 는 단일 선택(단일 제목 선택)만 할 수 있 습 니 다.
먼저,저 희 는 TextView Widget 과 RadioGroup 을 설계 하고 이 RadioGroup 에 RadioButton 두 개 를 설치 합 니 다.기본적으로 선택 하지 않 습 니 다.프로그램 실행 단계 에서 onCheckedChanged 를 시작 이벤트 장치 로 사용 하여 사용자 가 그 중의 단 추 를 선택 하여 선택 한 내용 을 표시 하고 RadioButton 의 옵션 문 자 를 TextView 에 표시 합 니 다.
다음은 효과 도 를 살 펴 보 겠 습 니 다.
 
다음은 관련 코드 입 니 다.
string.xml:

<?xml version="1.0" encoding="utf-8"?>
<resources>
 <string name="hello">Hello World, RadioGroupDemo</string>
 <string name="app_name">RadioGroupDemo</string>
 <string name="tr_radio_op1">  </string>
 <string name="tr_radio_op2">  </string>
 <string name="str_radio_question1">    ?</string>
</resources>
주 레이아웃 main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:Android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 >
 <!--  TextView -->
 <TextView
  android:id="@+id/myTextView"
  android:layout_width="228px"
  android:layout_height="49px"
  android:text="@string/str_radio_question1"
  android:textSize="30sp"
 />
 <!--   RadioGroup -->
 <RadioGroup
  android:id="@+id/myRadioGroup"
  android:layout_width="137px"
  android:layout_height="216px"
  android:orientation="vertical"
  >
  <!--  RadioButton -->
  <RadioButton
   android:id="@+id/myRadioButton1"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/tr_radio_op1"
  />
  <!--  RadioButton -->
  <RadioButton
   android:id="@+id/myRadioButton2"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:text="@string/tr_radio_op2"
  />
  </RadioGroup>
</LinearLayout>
마지막 으로 주 제어 프로그램 RadioGroupDemo.자바:

package com.android.test;
import android.app.Activity;
import android.os.Bundle;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.TextView;
public class RadioGroupDemo extends Activity
{
 public TextView mTextView1;
 public RadioGroup mRadioGroup1;
 public RadioButton mRadio1,mRadio2;
 public void onCreate(Bundle savedInstanceState)
 {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.main);
  /*   TextView、RadioGroup、RadioButton  */
  mTextView1 = (TextView) findViewById(R.id.myTextView);
  mRadioGroup1 = (RadioGroup) findViewById(R.id.myRadioGroup);
  mRadio1 = (RadioButton) findViewById(R.id.myRadioButton1);
  mRadio2 = (RadioButton) findViewById(R.id.myRadioButton2);
  /*RadioGroup OnCheckedChangeListener   */
  mRadioGroup1.setOnCheckedChangeListener(mChangeRadio);
 }
 private RadioGroup.OnCheckedChangeListener mChangeRadio = new
      RadioGroup.OnCheckedChangeListener()
 {
  @Override
  public void onCheckedChanged(RadioGroup group, int checkedId)
  {
   // TODO Auto-generated method stub
   if(checkedId==mRadio1.getId())
   {
    /* mRadio1     mTextView1*/
    mTextView1.setText(mRadio1.getText());
   }
   else if(checkedId==mRadio2.getId())
   {
    /* mRadio2     mTextView1*/
    mTextView1.setText(mRadio2.getText());
   }
  }
 };
}

RadioGroupDemo.java 를 실행 하면 이상 의 효 과 를 얻 을 수 있 습 니 다.
더 많은 안 드 로 이 드 관련 내용 에 관심 이 있 는 독자 들 은 본 사이트 의 주 제 를 볼 수 있다.
본 고 에서 말 한 것 이 여러분 의 안 드 로 이 드 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기