Back to project page K6nele.
The source code is released under:
Apache License
If you think the Android project K6nele listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * Copyright 2014, Institute of Cybernetics at Tallinn University of Technology *//ww w . j a v a 2 s.c o m * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package ee.ioc.phon.android.speak.demo; import android.content.Intent; import android.os.Bundle; import java.util.List; import ee.ioc.phon.android.speak.DetailsActivity; import ee.ioc.phon.android.speak.Extras; import ee.ioc.phon.android.speak.R; import ee.ioc.phon.android.speak.RecognizerIntent; import ee.ioc.phon.android.speak.Utils; public class ExtrasDemo extends AbstractRecognizerDemoActivity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Intent intent = createRecognizerIntent(); if (getRecognizers(intent).size() == 0) { toast(getString(R.string.errorRecognizerNotPresent)); finish(); } else { launchRecognizerIntent(intent); } } /** * Show the resulting extras */ @Override protected void onSuccess(Intent intent) { List<String> list = Utils.ppBundle(intent.getExtras()); Intent details = new Intent(this, DetailsActivity.class); details.setData(intent.getData()); details.putExtra(DetailsActivity.EXTRA_STRING_ARRAY, list.toArray(new String[list.size()])); startActivity(details); finish(); } private static Intent createRecognizerIntent() { Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH); intent.putExtra(Extras.GET_AUDIO, true); intent.putExtra(Extras.GET_AUDIO_FORMAT, (String) null); //intent.putExtra(Extras.GET_AUDIO_FORMAT, Constants.SUPPORTED_AUDIO_FORMATS.iterator().next()); return intent; } }