动态创建和删除线性布局和列表视图

发布于 2024-12-03 00:17:44 字数 241 浏览 1 评论 0 原文

所以这就是交易。

我的应用程序的布局是使用视图翻转器设置的。视图翻转器包含七个线性布局子项(视图)。每个线性布局都包含一个列表视图。每个线性布局代表我的应用程序中的不同类别。

这就是我的困境。

目前,我的布局非常静态且平淡,因此我希望能够让用户能够选择任意数量的可用类别。这意味着我必须能够动态创建和删除线性布局,每个布局都有自己的列表视图。还有为我的列表视图创建和删除数组适配器的问题。

有什么建议吗?

So here's the deal.

My app's layout is set up with a View Flipper. The View Flipper contains seven Linear Layout children (views). Each Linear layout then contains a List View. Each linear layout represents a different category in my app.

And here is my dilemma.

Currently my layout is pretty static and bland, so I want to be able to give users the ability select any number of the available categories. This will mean I will have to be able to dynamically create and remove Linear Layouts, each with its own List View. There's also the question of creating and removing Array Adapters for my List Views.

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

混吃等死 2024-12-10 00:17:44

如何禁用布局内的所有视图?

通过此链接,您可以找到三种方法:禁用、删除和隐藏。

然后,如果您想在此之后添加一些内容,您可以在 java 代码中执行此操作:

ViewFlipper mVF = (ViewFlipper) findViewById(R.id.my_ViewFlipper); //retrieve your ViewFlipper if it is in an xml file.
LinearLayout lila1 = new LinearLayout(this);
ListView livi1 = new ListView(this);
lila1.addView(livi1);
mVF.addView(lila1);

How can I disable all views inside the layout?

With this link you can find three approaches : disabling, removing and hiding.

Then if you want to add something after this, you can do it in your java code :

ViewFlipper mVF = (ViewFlipper) findViewById(R.id.my_ViewFlipper); //retrieve your ViewFlipper if it is in an xml file.
LinearLayout lila1 = new LinearLayout(this);
ListView livi1 = new ListView(this);
lila1.addView(livi1);
mVF.addView(lila1);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文