Android中的片段刷新时单选按钮不起作用

时间:2019-04-29 12:00:46

标签: android xamarin.android radio-group

我遇到了一些刷新问题,即当我弹出该片段并返回上一个片段时,单选按钮事件在创建该片段的新实例之前不起作用。

如果您知道解决方法,请帮助我

_rdGrpNewList = view.FindViewById<RadioGroup>(Resource.Id.RdGrp_Cust_NewList);
 rdBtnNew = view.FindViewById<RadioButton>(Resource.Id.RdBtn_Cust_New);
_rdBtnList = view.FindViewById<RadioButton>(Resource.Id.RdBtn_Cust_List);

这是我刷新时未触发的代码。创建片段时有效

 _rdGrpNewList.Check(_rdBtnList.Id);
_rdGrpNewList.CheckedChange += delegate
        {
        };

片段刷新代码

 public void RefreshFragment(AndroidSupV4.Fragment fragment)
        {
            _fragmentTransaction.Detach(fragment);
            _fragmentTransaction.Attach(fragment);
        }

0 个答案:

没有答案