gpt4 book ai didi

Android:setOnItemClickListener 不适用于软键盘中的 ListView

转载 作者:行者123 更新时间:2023-11-29 01:58:52 25 4
gpt4 key购买 nike

我正在为 Android 开发自定义软键盘。我在普通键盘的顶部添加了一个列表。该列表只是一个普通的 ListView。我需要做的是检测并响应主程序中的点击事件,即SoftKeyboard.java。 ListView 在 onCreateCandidatesView() 方法中初始化。这是我的代码。

suggestion_list.xml

<?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@color/candidate_background"
android:divider="#BBCFCFCF"
android:dividerHeight="1dp"
android:drawSelectorOnTop="false" />

SoftKeyboard.java

public class SoftKeyboard extends InputMethodService 
implements KeyboardView.OnKeyboardActionListener {

//dummy data for the list
private static final String[] items = {"1","2","3"};
//some other variables

@Override
public View onCreateCandidatesView() {
LayoutInflater mInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
ListView ls = (ListView)mInflater.inflate(R.layout.suggestion_list,null);

ls.setAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1,items));

ls.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
Log.v("index", "Clicked");
}
});

return ls;
}

//some other methods
}

但 ListView 似乎根本不响应 setOnItemClickListener()。任何人都可以在这个问题上帮助我吗?非常感谢!


更新:

我发现即使我用的是普通的ListView,还是不行。我更新了上面的代码以使用普通的 ListView。

最佳答案

尝试添加

android:descendantFocussability=blocksDescendants 到最顶部的线性布局。它可能会起作用。

关于Android:setOnItemClickListener 不适用于软键盘中的 ListView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13739079/

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