Android用のカスタムソフトキーボードを開発しています。通常のキーボードの上部にリストを追加しました。リストは通常の ListView です。私がする必要があるのは、SoftKeyboard.javaであるメイン プログラム内のクリック イベントを検出して応答することです。ListView は onCreateCandidatesView() メソッド内で初期化されます。これが私のコードです。
提案リスト.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 を使用するために上記のコードを更新しました。