android中数组博客园,从Android中的数组列表中检索元素?

我正在

Android中实现语音识别码.如何从Android中的数组列表中获取特定位置的元素?我尝试将arraylist转换为数组并重新生成.仍然代码不工作.

package com.espeaker;

public class EspeakerActivity extends Activity {

private static final int REQUEST_CODE = 1234;

private ListView wordsList;

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

Button speakButton = (Button) findViewById(R.id.speakButton);

wordsList = (ListView) findViewById(R.id.list);

// Disable button if no recognition service is present

PackageManager pm = getPackageManager();

List activities = pm.queryIntentActivities(

new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH), 0);

if (activities.size() == 0)

{

speakButton.setEnabled(false);

speakButton.setText("Recognizer not present");

}

}

/**

* Handle the action of the button being clicked

*/

public void speakButtonClicked(View v)

{

startVoiceRecognitionActivity();

}

/**

* Fire an intent to start the voice recognition activity.

*/

private void startVoiceRecognitionActivity()

{

Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);

intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,

RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);

intent.putExtra(RecognizerIntent.EXTRA_PROMPT, "Voice recognition Demo...");

startActivityForResult(intent, REQUEST_CODE);

}

/**

* Handle the results from the voice recognition activity.

*/

@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

ArrayList matches = data.getStringArrayListExtra(

RecognizerIntent.EXTRA_RESULTS);

wordsList.setAdapter(new ArrayAdapter(this, android.R.layout.simple_list_item_1,

matches));

String[] array=matches.toArray(new String[matches.size()]);

// ArrayList places = new ArrayList(

// Arrays.asList("black", "blue", "red"));

ArrayAdapter adapter = new ArrayAdapter(this, R.layout.list_item,matches);

final AutoCompleteTextView input_text = (AutoCompleteTextView) findViewById(R.id.auto);

Button button1 = (Button) findViewById(R.id.button1);

input_text.setAdapter(adapter);

button1.setText(" "+array[0]);

// button1.setText(""+matches);

}

super.onActivityResult(requestCode, resultCode, data);

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值