我遇到了一些刷新问题,即当我弹出该片段并返回上一个片段时,单选按钮事件在创建该片段的新实例之前不起作用。
如果您知道解决方法,请帮助我
_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);
}