Android - 保存动态更改布局的状态
我有一个布局,用户可以在其中添加按钮并将其放置在他们想要的位置。 我想允许用户保存他们的布局,以便下次打开应用程序时加载它。 有谁知道我是否可以将文件保存到 SD 卡上?或者,我可以使用某种layout.getXml() 方法并将其放入我的应用程序使用的数据库中。 提前致谢
I have a layout where users can add buttons and place them where they want.
I want to allow the user to save their layout so that it is loaded the next time they open the app.
Does anyone know if I can save the file on the sdcard? Alternatively I could use some kind of layout.getXml() method and put it in the database my app uses.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通过代码生成布局时没有要保存的文件。您必须创建自己的文件格式,可以将其保存到 SD 卡或插入数据库。
There is no file to save when you are generating a layout via code. You will have to create your own file format, which could be saved to the SD card or inserted into a database.
您可以使用 saveInstaceState() 方法,将相同类型的对象作为参数。
重新加载时会加载您想要的用户界面。
在onCreate()方法中放置一个条件,即savedInstaceState obj是否为null。如果没有,则调用 LoadUI()。
You can us savedInstaceState() method with the same type object as parameter .
there load the ui you want at the time of reloading.
In onCreate() method put a condition whethere that savedInstaceState obj is null or not . if not then call the LoadUI().
如果我是你,我会创建一个类来保存有关此布局和按钮的所有信息。并使用JSONWriter将类的所有信息写入到文件中。当应用程序打开时,我只需读取文件并使用 JSONObjects 重新创建数组。
If I were you, I would create a class holding all the information about this layout and buttons. And write every information of the class to a file with JSONWriter. When the app has opened I just read the file and recreate the arrays using JSONObjects.