运行效果
在xml添加以下代码
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingTop="16dp"
tools:context=".MainActivity">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="一天,张三的店里来了一个顾客,挑了25元的货,顾客拿出了100元,张三没有零钱找不开,就到隔壁李总的店里把这100元换成零钱
回来给给顾客找了75元零钱。过了一会,李总找张三,说刚才那100是假钱,张三马上给李总换了张真钱,问张三赔了多少钱?"
android:textSize="16sp"
/>
<RadioGroup
android:id="@+id/rg"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/rb_a"
android:text="A:125"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<RadioButton
android:id="@+id/rb_b"
android:text="B:100"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<RadioButton
android:id="@+id/rb_c"
android:text="C:175"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<RadioButton
android:id="@+id/rb_d"
android:text="D:200"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RadioGroup>
<Button
android:id="@+id/bt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="提交"
/>
</LinearLayout>
在Java文件添加以下代码
package com.example.question;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Toast;
public class MainActivity extends AppCompatActivity {
RadioGroup rg;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button button=(Button)findViewById((R.id.bt));
rg=(RadioGroup)findViewById(R.id.rg);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
for(int i=0;i<rg.getChildCount();i++){
RadioButton radioButton=(RadioButton)rg.getChildAt(i);
if(radioButton.isChecked()){
if(radioButton.getText().equals("B:100")){
Toast.makeText(MainActivity.this,"回答正确",Toast.LENGTH_SHORT).show();
}
else {
AlertDialog.Builder builder=new AlertDialog.Builder(MainActivity.this);
builder.setMessage("回答错误,下面请看解析,当张三换完零钱之后,给了顾客75还有价值25元的商品,自己还剩下了25元。这时,李总找来张三要钱,张三把自己剩下的25元给了李总,另外自己掏了一个25元的商品和75元的人民币,总价值100元。");
builder.setPositiveButton("确定",null).show();
}
break;
}
}
}
});
}
}