我正在为Android开发自定义软键盘。我在普通键盘的顶部添加了一个列表。该列表只是一个普通的ListView。我需要做的是检测并响应主程序中的click事件,即 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更新了上面的代码。
答案 0 :(得分:1)
尝试添加
android:descendantFocussability=blocksDescendants
到最顶部的线性布局。它可能会工作。