解决android.view.AbsSavedState$1 cannot be cast to android.widget.CompoundButton$SavedState

多个fragment并列,各个fragment中含有radioButton,反复切换fragment,再次执行ViewPager.setCurrentItem(1)时会崩溃报错android.view.AbsSavedState$1 cannot be cast to android.widget.CompoundButton$SavedState。   

----------解决办法:把radioButton换成其他控件即可(如Textview)。原因分析:切换后由于之前fragment的radioButton再次改变保存状态发生强制转换类型错误。(原因仅仅是猜想,如有准确原因分析请多指教探讨)

你可能感兴趣的:(android功能开发)