没有永久隐藏的选项,但是您可以通过这种方式实现
1.删除具体
view的
parent.removeViewAt(index);parent.removeView(view);
- 您必须将状态保存到
show/hide
了view
像永久存储
共享首选项示例
1.将值存储在
sharedPrefernces:
SharedPreferences preferences = this.getSharedPreferences("SoldiPreferences", Context.MODE_PRIVATE);SharedPreferences.Editor editor = preferences.edit();editor.putBoolean("storevalue", false);editor.commit();
2.从中获取价值
sharedPreferences:
SharedPreferences preferences = this.getSharedPreferences("SoldiPreferences", Context.MODE_PRIVATE);preferences.getBoolean("storevalue", false);if(preferences.getBoolean("storevalue", false)){view.setVisibility(View.VISIBLE);}elseview.setVisibility(View.GONE);
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)