使用哪个适配器?

发布于 2024-10-27 02:59:34 字数 162 浏览 3 评论 0原文

要求: 我正在开发 GRE 词汇应用程序。我有一个要求,我将在标题级别显示单词,并在下部显示四种含义,四种含义中的一种是正确的。

我将使用 TextView 控件来显示这些单词和含义。

问题: 我想实现适配器?不知道哪一款适合?哪个适配器?我的要求基本上是显示行和标题详细信息。

REQUIREMENT:
I am working on GRE vocab app. I have requirement in which I will be showing word at the header level and four meaning in the lower section and out four meanings one will be the correct one.

I will be using TextView control to show these words and meanings.

QUESTION:
I want to implement adapter? I don't know which one suits? which Adapter? my requirement is basically show line and header details.

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

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

发布评论

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

评论(2

℡Ms空城旧梦 2024-11-03 02:59:34

我不确定 ListViewAdapter 对您是否有意义。

为什么不将四个选项添加到 LinearLayout 并保持简单呢?

大部分适配器基础设施专门用于回收视图、避免预加载大量行以及处理多种类型的行。如果您不需要任何这些,那么 LinearLayout 可能会有意义。

I'm not sure a ListView and Adapter make sense for you.

Why not add your four options to a LinearLayout and keep it simple?

Much of the adapter infrastructure is dedicated to recycling views, avoiding pre-loading a large number of rows, and dealing with multiple types of rows. If you don't need any of this, then a LinearLayout might make sense.

谜兔 2024-11-03 02:59:34

ArrayAdapter 与 String[] 或定义列表一起使用。

Use the ArrayAdapter with either a String[] or List of the definitions.

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