如何在另一个Button中操作RadioButton的输出

时间:2018-01-24 23:29:18

标签: java android radio-button

我想问一下在java中另一个Button中操作单选按钮输出的方法是什么? 这是无线电组

  <RadioGroup
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_margin="15dp"
            android:fontFamily="cursive"
            android:text="Male"
            android:textSize="20dp"
            android:textStyle="italic"
            android:onClick="Gender"
            android:id="@+id/male"

            />

        <RadioButton
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_marginLeft="15dp"
            android:fontFamily="cursive"
            android:text="Female"
            android:textSize="20dp"
            android:textStyle="italic"
            android:onClick="Gender"
            android:id="@+id/Female"

            />

这是按下的按钮,应检查检查哪个单选按钮(男性或女性)

 <Button
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:layout_marginTop="100dp"
    android:background="@drawable/button"
    android:gravity="center"
    android:text="How much should I eat?"
    android:textAllCaps="false"
    android:textSize="20sp"
    android:onClick="How_much"


  />

0 个答案:

没有答案