ListActivity 和 onListItemClick 功能中的多个列表(或解决方法?)

发布于 2024-11-27 13:39:18 字数 212 浏览 3 评论 0原文

我知道 ListActivity 让我可以使用 onListItemClick。 另一方面,在正常的 Activity 中,我可以包含多个列表,并通过 ViewFlipper 轻松切换+动画。

所以。我可以让它一起工作吗?

[已解决]是的! ... 工具为王。删除了我的代码以尽量减少混乱。

I know that ListActivity gives me the possibility to use onListItemClick.
On the other hand in a normal Activity i can include multiple lists and make easy switching+animation through a ViewFlipper.

So. Can i make it work alltogether?

[Solved] Yes! ... implements are the kings. Deleted my code to minimize confusion.

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

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

发布评论

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

评论(1

柏拉图鍀咏恒 2024-12-04 13:39:18

您是否尝试过让您的 Activity 实现 OnItemClickListener,然后将列表的 onItemClickListener 设置为该活动? IE

public class MyActivity extends Activity implements OnItemClickListener {
    ...
    public void onCreate(...) {
        ...
        mList1.setOnItemClickListener(this);
        mList2.setOnItemClickListener(this);
        ...
    }
    ...
    public void onItemClick(AdapterView<?> adapter, View view, int position, long id) {
       if (adapter.getId() == R.id.list1) {
           // Handle list1 click event
       } else if (adapter.getId() == R.id.list2) {
           // Handle list2 click event
       }
    }
}

Have you tried having your Activity implement OnItemClickListener and then set your lists' onItemClickListener to the activity? I.e.

public class MyActivity extends Activity implements OnItemClickListener {
    ...
    public void onCreate(...) {
        ...
        mList1.setOnItemClickListener(this);
        mList2.setOnItemClickListener(this);
        ...
    }
    ...
    public void onItemClick(AdapterView<?> adapter, View view, int position, long id) {
       if (adapter.getId() == R.id.list1) {
           // Handle list1 click event
       } else if (adapter.getId() == R.id.list2) {
           // Handle list2 click event
       }
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文