我将具有 listview 的布局设置为弹出窗口,然后设置popupwindow.setFocusale(false);
,并将"android:focusable="true""
属性添加到列表视图下,
之后,我点击弹出窗口中的列表视图,无法选择listview 中的项目,
有谁能告诉解决方案?
提前谢谢!
答案 0 :(得分:0)
为什么你让popupwindow焦点错误..如果它离开了focussable,它会影响你的UI。我猜这就是ListView没有得到焦点的原因。
答案 1 :(得分:0)
我遇到了同样的问题,在我的情况下PopupWindow.setFocusble(false)
是必需的(并且在我的情况下使用ListPopupWindow
不是解决方案,因为项目中的很多内容已经使用了基础{{1} }的功能包括扩展)。
如果处于相同情况的某人有基于错误讨论的某种解决方法here(第9条)
主要思想是PopupWindow
的层次结构仍然接收触摸事件,因此我们可以手动触发ListView
。
然而,这种方法与真正的onItemClick()
触摸处理并不是100%完全相同(就像点击一行时没有选择的亮点一样),这对我来说非常好。
如果某人有更准确的解决方案,请分享。
所以,这里是完整的ListView
代码,可以与Adapter
ListView
PopupWindow
内的setFocusable(false)
一起使用:
私有类CustomAdapter扩展了ArrayAdapter {
private LayoutInflater mInflater;
private ListView mOwningListView;
public CustomAdapter(Context context, List<String> objects, ListView listView) {
super(context, android.R.layout.simple_list_item_1, objects);
mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
mOwningListView = listView;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
if (convertView == null) {
convertView = mInflater.inflate(R.layout.font_pick_row, null);
}
// this is the key point of workaround
convertView.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
/*
* as every row is still receiving their touches
* we can use this to manually trigger onItemClick
* since it doesn't firing in popupWindow.setFocusable(false)
*/
mOwningListView.getOnItemClickListener().onItemClick(mOwningListView, v, position, getItemId(position));
}
});
//... other stuff
return convertView;
}
}