Android 如何添加两个单选按钮的值?

Android 如何添加两个单选按钮的值?,android,radio-group,Android,Radio Group,我有两个radioButton组,每个组包含不确定数量的radioButton。我想将radioButton组1中选择的radioButton值与radioButton组2中选择的radioButton值相加,并在toast中显示结果。我尝试了下面的代码,但似乎不起作用 请问我怎么做 我尝试的是: RadioButton lamp1; RadioButton tele1; RadioGroup group, group2; Button button; int result; @Overrid

我有两个radioButton组,每个组包含不确定数量的radioButton。我想将radioButton组1中选择的radioButton值与radioButton组2中选择的radioButton值相加,并在toast中显示结果。我尝试了下面的代码,但似乎不起作用

请问我怎么做

我尝试的是:

RadioButton lamp1;
RadioButton tele1;
RadioGroup group, group2;
Button button;
int result;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_type_installation);

    addListenerOnButton();
}

public void addListenerOnButton() {

    group = findViewById(R.id.group);
    group2 = findViewById(R.id.group2);

    ampoule1 = findViewById(R.id.lamp1);
    tele1 = findViewById(R.id.tele1);

    button = findViewById(R.id.calcul);
    button.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            int selectedId = group.getCheckedRadioButtonId();
            int selectedId1 = group2.getCheckedRadioButtonId();

            ampoule1 = findViewById(selectedId);
            tele1 = findViewById(selectedId1);

            result = selectedId+selectedId1;
            Toast.makeText(Type_Installation.this, "your consommation is"
                    +result+"W", Toast.LENGTH_SHORT).show();
        }
    });
}
XML代码:

<TextView
    android:id="@+id/ampoule"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/appBar"
    android:padding="10dp"
    android:layout_marginStart="40dp"
    android:layout_marginLeft="40dp"
    android:text="Ampoule"
    android:textSize="20sp"/>

<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:layout_below="@+id/ampoule"
    android:background="@color/material_blue_grey_700"
    android:layout_marginLeft="20dp"
    android:layout_marginStart="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginEnd="20dp"/>

<RadioGroup
    android:id="@+id/group"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/ampoule"
    android:layout_marginStart="30dp"
    android:layout_marginLeft="30dp">

    <RadioButton
        android:id="@+id/lamp1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="40 W"
        android:checked="true"/>

    <RadioButton
        android:id="@+id/lamp2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="60 W"
        android:textColor="@color/material_blue_grey_700"/>

    <RadioButton
        android:id="@+id/lamp3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="75 W"
        android:textColor="@color/material_blue_grey_700"/>

    <RadioButton
        android:id="@+id/ampoule4"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="100 W"
        android:textColor="@color/material_blue_grey_700"/>
</RadioGroup>

<TextView
    android:id="@+id/tele"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/group"
    android:padding="10dp"
    android:layout_marginStart="40dp"
    android:layout_marginLeft="40dp"
    android:text="Televiseur"
    android:textSize="20sp"/>

<View
    android:layout_width="match_parent"
    android:layout_height="1dp"
    android:layout_below="@+id/tele"
    android:background="@color/material_blue_grey_700"
    android:layout_marginLeft="20dp"
    android:layout_marginStart="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginEnd="20dp"/>

<RadioGroup
    android:id="@+id/group2"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/tele"
    android:layout_marginStart="30dp"
    android:layout_marginLeft="30dp">

    <RadioButton
        android:id="@+id/tele1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="100 W"
        android:checked="true"/>

    <RadioButton
        android:id="@+id/tele2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="200 W"
        android:textColor="@color/material_blue_grey_700"/>

    <RadioButton
        android:id="@+id/tele3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="300 W"
        android:textColor="@color/material_blue_grey_700"/>
</RadioGroup>

<Button
    android:id="@+id/calcul"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_margin="20dp"
    android:background="@drawable/material_button1"
    android:text="calculer"/>

您可以首先从单选组中获取所选
单选按钮的ID,然后在获取ID后,您可以获取所选
单选按钮的文本,然后您可以添加它们或执行任何您想要的操作

下面的代码假设您的
单选按钮
的整数值为文本
,即5,6,7

button.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View v) {

        // get selected radio button from radioGroup
        int selectedId1 = group.getCheckedRadioButtonId();
        int selectedId2 = group2.getCheckedRadioButtonId();

        // find the radiobutton by returned id
        RadioButton radioButton1 = (RadioButton) findViewById(selectedId1);
        RadioButton radioButton2 = (RadioButton) findViewById(selectedId2);


        //Assuming text on radio buttons are integer values like 5.6.7 etc

        int result = Integer.parseInt(radioButton1.getText())+Integer.parseInt(radioButton2 .getText());


        Toast.makeText(MyAndroidAppActivity.this,
            "Resulkt"+result, Toast.LENGTH_SHORT).show();
    }
});

希望有帮助。

使用了这些代码行

 lamp1 = findViewById(selectedId);
  tele1 = findViewById(selectedId1);
  result = Integer.valueOf(lamp1.getText().toString())+Integer.valueOf(tele1.getText().toString());
而不是这个

ampoule1 = findViewById(selectedId);
tele1 = findViewById(selectedId1);
 result = selectedId+selectedId1;

当你选择一个收音机按钮时,你想显示祝酒词当我点击“计算”按钮时,你不想显示祝酒词请勾选我的答案注意,你的文字不是纯整数。我会让你的单选按钮的文本值是整数。那么这就行了,谢谢你的纠正。我认为单选按钮值是整数,因为他在Toast.makeText中添加字符串值(键入\ u Installation.this,“您的组合是”+result+“W”,Toast.LENGTH\ u SHORT).show();