我试图保存和恢复由按钮表组成的视图层次结构.表中所需的表行和按钮的数量在运行时才知道,并且在我的Activity的onCreate(Bundle)方法中以编程方式添加到膨胀的xml布局中.我的问题是:可以使用Android的默认视图保存/恢复实现来保存和恢复最终表吗?
我目前的尝试的一个例子如下.在初始运行时,表按预期构建.当活动被销毁时(通过旋转设备),重建的视图仅显示没有子项的空tableLayout.
setContentVIEw(int)中引用的xml文件包括添加按钮的空tableLayout.
protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Setup this activity's vIEw. setContentVIEw(R.layout.game_board); tableLayout table = (tableLayout) findVIEwByID(R.ID.table); // If this is the first time building this vIEw, programmatically // add table rows and buttons. if (savedInstanceState == null) { int grIDSize = 5; // Create the table elements and add to the table. int uniqueID = 1; for (int i = 0; i < grIDSize; i++) { // Create table rows. tableRow row = new tableRow(this); row.setID(uniqueID++); for (int j = 0; j < grIDSize; j++) { // Create buttons. button button = new button(this); button.setID(uniqueID++); row.addVIEw(button); } // Add row to the table. table.addVIEw(row); } }}
我的理解是,AndroID会保存视图状态,只要它们分配了ID,并在重新创建活动时恢复视图,但现在它似乎重新定义了xml布局,仅此而已.在调试代码时,我可以确认在表中的每个button上调用onSaveInstanceState(),但是onRestoreInstanceState(Parcelable)不是.
解决方法:
在搜索了Activity,VIEw和VIEwGroup的源代码之后,我了解到,每次调用onCreate(Bundle)时,必须以编程方式添加以编程方式添加的视图并为其分配相同的ID.无论是第一次创建视图还是在销毁活动后重新创建视图,都是如此.然后在调用Activity.onRestoreInstanceState(Bundle)期间恢复以编程方式添加的视图的已保存实例状态.上面代码的最简单答案就是删除对savedInstanceState == null的检查.
protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // Setup this activity's vIEw. setContentVIEw(R.layout.game_board); tableLayout table = (tableLayout) findVIEwByID(R.ID.table); int grIDSize = 5; // Create the table elements and add to the table. int uniqueID = 1; for (int i = 0; i < grIDSize; i++) { // Create table rows. tableRow row = new tableRow(this); row.setID(uniqueID++); for (int j = 0; j < grIDSize; j++) { // Create buttons. button button = new button(this); button.setID(uniqueID++); row.addVIEw(button); } // Add row to the table. table.addVIEw(row); }}
总结 以上是内存溢出为你收集整理的android – 从已保存状态恢复视图层次结构不会恢复以编程方式添加的视图全部内容,希望文章能够帮你解决android – 从已保存状态恢复视图层次结构不会恢复以编程方式添加的视图所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)