На уровне активности у меня есть радиогруппа и флажок. Когда я go перехожу к этой активности, она запускается поздно. В чем проблема? При нажатии кнопки через две-три секунды происходит переход к следующему фрагменту. Такое бывает на некоторых телефонах введите описание изображения здесь
<RadioGroup android:id="@+id/radiogroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txt1"
android:layout_alignParentRight="true"
android:layout_gravity="right"
android:layoutDirection="rtl"
xmlns:android="http://schemas.android.com/apk/res/android">
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:gravity="center"
android:text="تحویل سفارش در کم تر از 60 دقیقه"
/>
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="تحویل سفارش در ساعت و تاریخ مشخص"
/>
</RadioGroup>