リストビューwordListのonclickListenerをリストに表示されたテキストを取得するにはどうすればよいですか?また、その関数をどこに書くべきですか?私は素朴なAndroidの開発者であり、その適切な例を見つけることができませんでした!リストビューにonclickListenerを置く方法
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (requestCode == REQUEST_CODE && resultCode == RESULT_OK)
{
// Populate the wordsList with the String values the recognition engine thought it heard
matches = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
wordsList.setAdapter(new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1,matches));
}
super.onActivityResult(requestCode, resultCode, data);
}
はそれを確認してください。 http://stackoverflow.com/questions/2240411/android-when-i-set-an-onclicklistener-for-a-listview – Santhosh