gpt4 book ai didi

android - 如何在可扩展列表中为子项创建点击事件

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:22:02 24 4
gpt4 key购买 nike

我正在玩这个例子。 http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/ExpandableList2.html

我不知道如何将监听器附加到子元素,以便在用户点击电话号码时触发一些操作。

任何代码或链接将不胜感激。

最佳答案

您需要订阅setOnChildClickListener

getExpandableListView().setOnChildClickListener(this);

并实现 OnChildClickListener

@Override
public boolean onChildClick(ExpandableListView parent, View v, int groupPosition,
int childPosition, long id) {
// use groupPosition and childPosition to locate the current item in the adapter
return true;
}

关于android - 如何在可扩展列表中为子项创建点击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3416829/

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