Back to project page api-ai-android-sdk.
The source code is released under:
Apache License
If you think the Android project api-ai-android-sdk listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ai.api.sample; //from w w w.j a v a 2 s .com /*********************************************************************************************************************** * * API.AI Android SDK - API.AI libraries usage example * ================================================= * * Copyright (C) 2014 by Speaktoit, Inc. (https://www.speaktoit.com) * https://www.api.ai * *********************************************************************************************************************** * * 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. * ***********************************************************************************************************************/ import android.support.v7.app.ActionBarActivity; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.widget.TextView; import com.google.gson.Gson; import com.google.gson.JsonElement; import java.util.Map; import ai.api.AIConfiguration; import ai.api.GsonFactory; import ai.api.model.AIError; import ai.api.model.AIResponse; import ai.api.ui.AIButton; public class AIButtonSampleActivity extends ActionBarActivity implements AIButton.AIButtonListener { public static final String TAG = AIButtonSampleActivity.class.getName(); private AIButton aiButton; private TextView resultTextView; private Gson gson; @Override protected void onCreate(final Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_aibutton_sample); resultTextView = (TextView) findViewById(R.id.resultTextView); gson = GsonFactory.getGson(); final AIConfiguration config = new AIConfiguration(Config.ACCESS_TOKEN, Config.SUBSCRIPTION_KEY, AIConfiguration.SupportedLanguages.English, AIConfiguration.RecognitionEngine.System); aiButton = (AIButton) findViewById(R.id.micButton); aiButton.initialize(config); aiButton.setResultsListener(this); } @Override public boolean onCreateOptionsMenu(final Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.menu_aibutton_sample, menu); return true; } @Override public boolean onOptionsItemSelected(final MenuItem item) { // Handle action bar item clicks here. The action bar will // automatically handle clicks on the Home/Up button, so long // as you specify a parent activity in AndroidManifest.xml. final int id = item.getItemId(); //noinspection SimplifiableIfStatement if (id == R.id.action_settings) { return true; } return super.onOptionsItemSelected(item); } @Override public void onResult(final AIResponse response) { runOnUiThread(new Runnable() { @Override public void run() { Log.d(TAG, "onResult"); if (response.isError()) { resultTextView.setText("Error: " + response.getStatus().getErrorDetails()); Log.i(TAG, "Received error response"); // this is example how to get different parts of error description Log.i(TAG, "Error details: " + response.getStatus().getErrorDetails()); Log.i(TAG, "Error type: " + response.getStatus().getErrorType()); } else { resultTextView.setText(gson.toJson(response)); Log.i(TAG, "Received success response"); // this is example how to get different parts of result object Log.i(TAG, "Status code: " + response.getStatus().getCode()); Log.i(TAG, "Status type: " + response.getStatus().getErrorType()); Log.i(TAG, "Resolved query: " + response.getResult().getResolvedQuery()); Log.i(TAG, "Action: " + response.getResult().getAction()); Log.i(TAG, "Speech: " + response.getResult().getSpeech()); if (response.getResult().getMetadata() != null) { Log.i(TAG, "Intent id: " + response.getResult().getMetadata().getIntentId()); Log.i(TAG, "Intent name: " + response.getResult().getMetadata().getIntentName()); } if (response.getResult().getParameters() != null && !response.getResult().getParameters().isEmpty()) { Log.i(TAG, "Parameters: "); for (final Map.Entry<String, JsonElement> entry : response.getResult().getParameters().entrySet()){ Log.i(TAG, String.format("%s: %s", entry.getKey(), entry.getValue().toString())); } } } } }); } @Override public void onError(final AIError error) { runOnUiThread(new Runnable() { @Override public void run() { Log.d(TAG, "onError"); resultTextView.setText(error.toString()); } }); } }