Android 프로그램 개발 중 단일 선택 단추(RadioGroup)사용 에 대한 자세 한 설명

2456 단어 android단선버튼
아직 체크 버튼(RadioGroup)의 사용 을 소개 하지 않 았 으 니 먼저 효과 도 를 보 여 드 리 겠 습 니 다.

xml 파일

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
tools:context=".MainActivity" 
android:orientation="vertical"> 
<TextView 
android:id="@+id/txt" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content" 
android:text="     "/> 
<RadioGroup 
android:id="@+id/sex" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content"> 
<RadioButton 
android:id="@+id/male" 
android:text=" "/> 
<RadioButton 
android:id="@+id/female" 
android:text=" "/> 
</RadioGroup> 
</LinearLayout> 
자바 파일

public class
MainActivity extends Activity { 
private TextView txt=null; 
private RadioGroup sex=null; 
private RadioButton male=null; 
private RadioButton female=null; 
@Override 
protected void
onCreate(Bundle savedInstanceState) { 
super.onCreate(savedInstanceState); 
setContentView(R.layout.activity_main); 
this.txt=(TextView)
super.findViewById(R.id.txt); 
this.sex=(RadioGroup)
super.findViewById(R.id.sex); 
this.male=(RadioButton)
super.findViewById(R.id.male); 
this.female=(RadioButton)
super.findViewById(R.id.female); 
this.sex.setOnCheckedChangeListener(new
OnCheckedChangeListenerImp()); 
} private class
OnCheckedChangeListenerImp implements
OnCheckedChangeListener{ 
public void
onCheckedChanged(RadioGroup group, int checkedId)
{ String temp=null; 
if(MainActivity.this.male.getId()==checkedId){ 
temp=" "; 
} else if(MainActivity.this.female.getId()==checkedId){ 
temp=" "; 
} MainActivity.this.txt.setText("     "+temp); 
} }
위 와 같이 소 편 이 소개 해 드 리 는 안 드 로 이 드 프로그램 개발 중 단일 선택 버튼(RadioGroup)의 사용 에 대한 자세 한 설명 입 니 다.도움 이 되 셨 으 면 합 니 다!

좋은 웹페이지 즐겨찾기