标签:
解决方案:
在出现这种情况的View 中 重写 onRestoreInstanceState方法
详细代码:
protected void onRestoreInstanceState(Parcelable state) { try { super.onRestoreInstanceState(state); } catch (Exception e) { } state = null; }
Android Make sure other views do not use the same id. 错误解决
标签:
原文地址:http://blog.csdn.net/tanranran/article/details/45029885