发布于 2015-05-24 04:58:39 | 1078 次阅读 | 评论: 1 | 来源: PHPERZ
Android移动端操作系统
Android是一种基于Linux的自由及开放源代码的操作系统,主要使用于移动设备,如智能手机和平板电脑,由Google公司和开放手机联盟领导及开发。尚未有统一中文名称,中国大陆地区较多人使用“安卓”或“安致”。
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;
}