gpt4 book ai didi

android - 我可以在 android 的 ListView Activity 中有多个列表吗

转载 作者:太空狗 更新时间:2023-10-29 16:08:54 24 4
gpt4 key购买 nike

是否有可能 in 1 listactivity 将处理多个列表?

约夫

最佳答案

是的,这是可能的。你试过了吗?

例如:----

  public class MyActivity1 extends Activity implements OnItemClickListener {
...
public void onCreate(...) {
...
myList1.setOnItemClickListener(this);
myList2.setOnItemClickListener(this);
...
}
...
public void onItemClick(AdapterView<?> adapter, View view, int position, long id) {
if (adapter.getId() == R.id.list1) {

// handling mylist1

} else if (adapter.getId() == R.id.list2) {

// handling list2
}
}
}

可能会有帮助......

关于android - 我可以在 android 的 ListView Activity 中有多个列表吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7704058/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com