设置默认选中按钮后,我无法取消选中初始单选按钮。
<RadioGroup
android:id="@+id/stateRadioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="16dp"
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.502"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<RadioButton
android:id="@+id/attendanceRadioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="School"
android:textSize="18sp" />
<RadioButton
android:id="@+id/hometimeRadioButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Home"
android:textSize="18sp" />
</RadioGroup>
我无法理解为什么会这样。我已经从stackoverflow读取了this article。但它对我来说没有帮助,而且也太老了。
我删除了该行android:checkedButton="@+id/attendanceRadioButton"
我运作良好。 (我的意思是从不同时点击两个按钮)但是没有默认的选中按钮。所以这不是我想要的。
我已经在onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState)
添加了2行,但没有帮助。 (实际上这些观点都在Fragment上。)
stateRadioGroup.clearCheck();
attendanceRadioButton.setChecked(true);
与上图相同的结果。
Android Studio:3.0.1
Gradle:4.1
compileSdkVersion:27
minSdkVersion:21
targetSdkVersion:23
运行设备:LG V10,Android 7.0
==============
我为解决这个问题制作了新项目。我认为这个问题与Fragment有关系。但我不知道如何解决这个问题。所以,请帮助我:(
有MainActivity
和RadioButtonFragment
我会在RadioButtonFragment
MainActivity
中对片段进行充气,如以下代码所示。
<android.support.constraint.ConstraintLayout
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"
tools:context="Your Package Name">
<fragment
android:id="@+id/fragmentLayout"
android:layout_width="0dp"
android:layout_height="0dp"
android:name="io.github.tyeolrik.testradiobutton.RadioButtonFragment"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
FragmentManager fm = getFragmentManager();
FragmentTransaction fragmentTransaction = fm.beginTransaction();
fragmentTransaction.add(R.id.fragmentLayout, new RadioButtonFragment());
fragmentTransaction.commit();
setContentView(R.layout.activity_main);
}
<!-- Of course there is ConstraintLayout which wraps RadioGroup -->
<RadioGroup
android:id="@+id/buttonGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:checkedButton="@+id/button1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<RadioButton
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="School" />
<RadioButton
android:id="@+id/button2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Home" />
</RadioGroup>
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// Inflate the layout for this fragment
View view = inflater.inflate(R.layout.fragment_radio_button, container, false);
return view;
}
当我在Activity中创建一个RadioGroup和一些RadioButtons时,它运行良好。但是,在这种情况下,在Fragment中制作RadioButtons,会发生两个按钮检查问题。
有什么想法可以解决这个问题吗?
不是android.support.v4.app.Fragment
但是android.app.Fragment
在MainActivity.java中
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
在RadioButtonFragment.java
中import android.app.Fragment;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.RadioButton;
import android.widget.RadioGroup;
答案 0 :(得分:1)
试试这个, onCreateView()方法
下的代码删除stateRadioGroup.clearCheck();
attendanceRadioButton.setChecked(true);
在xml中添加以下内容。
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="10dp">
<RadioGroup
android:id="@+id/stateRadioGroup"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/attendanceRadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checked="true"
android:text="School" />
<RadioButton
android:id="@+id/hometimeRadioButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Home" />
</RadioGroup>
</LinearLayout>
答案 1 :(得分:0)
尽量不为radioButton设置check属性。而是将其添加到您的radioGroup
android:checkedButton="@+id/attendanceRadioButton"
编辑:
此外,您不必初始化您的radioButtons,您可以使用您的radioGroup收听它