在我的程序中,用户单击该按钮,弹出提示用户说出某些内容。在用户说出短语或单词后,会显示列出的可能单词。我的问题是,如何选择所选的值并将其用作程序中的变量。!
这是我的代码:
public class MainActivity extends Activity {
Button listen;
ListView lv;
static final int check = 1111;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
lv = (ListView)findViewById(R.id.listView1);
listen = (Button)findViewById(R.id.button2);
}
public void touched2(View v){
Intent i = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, RecognizerIntent.
LANGUAGE_MODEL_FREE_FORM);
i.putExtra(RecognizerIntent.EXTRA_PROMPT, "Speak up!");
startActivityForResult(i, check);
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
// TODO Auto-generated method stub
if (requestCode == check && resultCode == RESULT_OK){
ArrayList results = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
lv.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1, results));
}
super.onActivityResult(requestCode, resultCode, data);
}
}
提前感谢您的帮助!
答案 0 :(得分:0)
尝试像这样访问列表视图事件
lv.setOnItemClickListener(new ListView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent, View view, int pos,
long id) {
// put your logic here
//pos is the postion of selected item in list view
//you can call
lv.getItemAtPosition(pos).toString();
}
});
试试这个link