如何在android中的一个活动上使用两个自定义列表视图?

发布于 2024-12-03 04:49:25 字数 193 浏览 0 评论 0原文

我试图在一项活动上显示两个自定义列表视图。但我很困惑如何处理 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 技术交流群。

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

发布评论

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

评论(1

甜味拾荒者 2024-12-10 04:49:25

只需在 XML 中定义两个 ListView,例如:

<LinearLayout android:orientation="horizontal"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">

    <ListView android:id="@+id/list1"
        android:layout_width="0dp"
        android:layout_weight="0.5"
        android:layout_height="fill_parent" />

    <ListView android:id="@+id/list2"
        android:layout_width="0dp"
        android:layout_weight="0.5"
        android:layout_height="fill_parent" />

</LinearLayout>

在代码中使用此命令来分配列表

ListView list1 = (ListView) findViewById(R.id.list1);
ListView list2 = (ListView) findViewById(R.id.list2);

,并为它们设置不同的 onItemClickListener,例如这样:

    list1.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            //...

        }
    });

就完成了:)这样,您的 Activity 不需要扩展 ListActivity,只需扩展 Activity 即可。

Just define two ListViews in your XML, like:

<LinearLayout android:orientation="horizontal"
    android:layout_height="fill_parent"
    android:layout_width="fill_parent">

    <ListView android:id="@+id/list1"
        android:layout_width="0dp"
        android:layout_weight="0.5"
        android:layout_height="fill_parent" />

    <ListView android:id="@+id/list2"
        android:layout_width="0dp"
        android:layout_weight="0.5"
        android:layout_height="fill_parent" />

</LinearLayout>

In your code use this command to assign your Lists

ListView list1 = (ListView) findViewById(R.id.list1);
ListView list2 = (ListView) findViewById(R.id.list2);

and for both of them set a different onItemClickListener, for example this way:

    list1.setOnItemClickListener(new OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
            //...

        }
    });

and you are done :) This way, your activity don't need to extend ListActivity, just Activity.

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