码迷,mamicode.com
首页 > 移动开发 > 详细

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

时间:2015-04-13 18:54:19      阅读:269      评论:0      收藏:0      [点我收藏+]

标签:

解决方案:

在出现这种情况的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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!