美文网首页
Android Make sure other views do

Android Make sure other views do

作者: 零宽度接合 | 来源:发表于2016-07-04 09:28 被阅读215次

问题描述

Android Make sure other views do not use the same id. 错误

解决方案

在出现这种情况的View  中 重写 onRestoreInstanceState方法

详细代码:

protected void onRestoreInstanceState(Parcelable state) {

try {

super.onRestoreInstanceState(state);

} catch (Exception e) {

}

state = null;

}

相关文章

网友评论

      本文标题:Android Make sure other views do

      本文链接:https://www.haomeiwen.com/subject/qpbfjttx.html