使用哪个适配器?
要求: 我正在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定
ListView
和Adapter
对您是否有意义。为什么不将四个选项添加到 LinearLayout 并保持简单呢?
大部分适配器基础设施专门用于回收视图、避免预加载大量行以及处理多种类型的行。如果您不需要任何这些,那么 LinearLayout 可能会有意义。
I'm not sure a
ListView
andAdapter
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.将 ArrayAdapter 与 String[] 或定义列表一起使用。
Use the ArrayAdapter with either a String[] or List of the definitions.