Android - 保存动态更改布局的状态

发布于 2024-10-30 18:20:51 字数 145 浏览 0 评论 0原文

我有一个布局,用户可以在其中添加按钮并将其放置在他们想要的位置。 我想允许用户保存他们的布局,以便下次打开应用程序时加载它。 有谁知道我是否可以将文件保存到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

以往的大感动 2024-11-06 18:20:51

通过代码生成布局时没有要保存的文件。您必须创建自己的文件格式,可以将其保存到 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.

梦里人 2024-11-06 18:20:51

您可以使用 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().

送你一个梦 2024-11-06 18:20:51

如果我是你,我会创建一个类来保存有关此布局和按钮的所有信息。并使用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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文