如何在android中的一个活动上使用两个自定义列表视图?
我试图在一项活动上显示两个自定义列表视图。但我很困惑如何处理 onListItemClick 以及最重要的是如何设置 ID
@id/android:列表
同一活动的两个列表?
如果有人尝试过在单个活动上使用两个列表视图,任何链接、示例代码都会有所帮助。提前致谢...
I am trying to show two custom listviews on one activity. But I am confused how to handle onListItemClick and most important how I can set the ID
@id/android:list
for both the lists on the same activity?
If any one have tried with two list views on single activity, any link, sample code will be helpful. Thanks in advance...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在 XML 中定义两个 ListView,例如:
在代码中使用此命令来分配列表
,并为它们设置不同的
onItemClickListener
,例如这样:就完成了:)这样,您的 Activity 不需要扩展
ListActivity
,只需扩展Activity
即可。Just define two ListViews in your XML, like:
In your code use this command to assign your Lists
and for both of them set a different
onItemClickListener
, for example this way:and you are done :) This way, your activity don't need to extend
ListActivity
, justActivity
.