gpt4 book ai didi

java - 可扩展 ListView setOnChildClickListener 的问题

转载 作者:太空宇宙 更新时间:2023-11-03 11:17:41 25 4
gpt4 key购买 nike

我正在开发具有可扩展 ListView 的应用程序,并在此 ListView 中很好地获取显示数据,但问题是 setOnChildClickListener 不起作用。没有导致焦点问题的交互式小部件(复选框或 edittex),我们需要伪造焦点,不,我只在父列表和子列表中采用了 Texview。我也尝试过做所有 texview focusable as false 但没有成功。你能解决这个问题吗

代码:

mlvInstructionlist = (ExpandableListView)amviInstruction. findViewById(R.id.lvInsListofInstruction);
AssetsWiseInstructionListAdapter adapter = new AssetsWiseInstructionListAdapter(getActivity(),mlvInstructionlist, mlstGroupCollection);

mlvInstructionlist.setAdapter(adapter);
mlvInstructionlist.setOnChildClickListener(this);
@Override
public boolean onChildClick(ExpandableListView parent, View v,
int groupPosition, int childPosition, long id) {
// TODO Auto-generated method stub

Toast.makeText(getSherlockActivity(), "Child click Header",Toast.LENGTH_LONG).show();
AppLog.showLogI(TAG, "Child click Header");
return true;
}

最佳答案

您可以尝试将 listView 替换为 scrollView。这应该可以解决它或尝试引用这篇文章:Focusable EditText inside ListView .

这讨论了为后代设置 onClick 和 focusable。

关于java - 可扩展 ListView setOnChildClickListener 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13953487/

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