Android 는 단일 항목,여러 가지 선택 작업 을 실현 합 니 다.
1.단일 항목 선택
1.1.레이아웃
<?xml version="1.0" encoding="utf-8"?>
<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"
android:orientation="vertical"
tools:context="com.rj141.sb.kongjian.DateActivity">
<TextView
android:layout_marginLeft="10dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2+3="
android:textSize="22dp"
/>
<RadioGroup
android:layout_marginLeft="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="A.2"
android:id="@+id/rb1"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="B.3"
android:id="@+id/rb2"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="C.4"
android:id="@+id/rb3"
/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="D.5"
android:id="@+id/rb4"
/>
</RadioGroup>
<Button
android:id="@+id/submit"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text=" "/>
</LinearLayout>
1.2.Java 파일
public class SingChoose extends AppCompatActivity {
private Button btn;
private RadioButton rbD;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.sing_choose);
rbD= (RadioButton) this.findViewById(R.id.rb4);
btn= (Button) this.findViewById(R.id.submit);
btn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if(rbD.isChecked()){
Toast.makeText(SingChoose.this," , ",Toast.LENGTH_SHORT).show();
}
else {
Toast.makeText(SingChoose.this," , ",Toast.LENGTH_SHORT).show();
}
}
});
}
}
효과 그림:2.여러 가지 선택
2.1.배치
<?xml version="1.0" encoding="utf-8"?>
<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"
android:orientation="vertical"
tools:context="com.rj141.sb.kongjian.CheckChoose">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp"
android:text=" ?"
/>
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:id="@+id/cb1" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:id="@+id/cb2" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:id="@+id/cb3" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:id="@+id/cb4" />
<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text=" "
android:id="@+id/cb5" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="18dp"
android:id="@+id/tv" />
</LinearLayout>
2.2.Java 파일
public class CheckChoose extends AppCompatActivity implements CompoundButton.OnCheckedChangeListener {
private CheckBox cb1,cb2,cb3,cb4,cb5;
private TextView tv;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.check_choose);
tv= (TextView) this.findViewById(R.id.tv);
cb1= (CheckBox) this.findViewById(R.id.cb1);
cb2= (CheckBox) this.findViewById(R.id.cb2);
cb3= (CheckBox) this.findViewById(R.id.cb3);
cb4= (CheckBox) this.findViewById(R.id.cb4);
cb5= (CheckBox) this.findViewById(R.id.cb5);
cb1.setOnCheckedChangeListener(this);
cb2.setOnCheckedChangeListener(this);
cb3.setOnCheckedChangeListener(this);
cb4.setOnCheckedChangeListener(this);
cb5.setOnCheckedChangeListener(this);
}
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
String str=" :";
if(cb1.isChecked()){
str+=cb1.getText()+",";
}
if(cb2.isChecked()){
str+=cb2.getText()+",";
}
if(cb3.isChecked()){
str+=cb3.getText()+",";
}
if(cb4.isChecked()){
str+=cb4.getText()+",";
}
if(cb5.isChecked()){
str+=cb5.getText()+",";
}
tv.setText(str);
}
}
효과 그림:이상 은 본 고의 모든 내용 입 니 다.여러분 이 안 드 로 이 드 소프트웨어 프로 그래 밍 을 배 우 는 데 도움 이 되 기 를 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.