巩固两个" OnActivityResult"方法

时间:2016-03-06 06:57:40

标签: java android speech-recognition text-to-speech override

如果你们中的任何人见过我,你就会知道我在Java方面非常基础。我的大部分知识都是从各种来源自学的:在这种情况下,代码主要是从在线教程中获取和修改的。我试图创建这个非常简单的ai,允许你1)使用语音识别2)回话。问题是,我的两个代码都使用OnActivityResult方法:而且我无法找到如何将它们组合起来并使其保持工作。两者的代码都很完美,但由于具有相同名称的方法,它们不能同时工作。这是两种方法,以及第一种方法。

知道如何让这两种方法同时工作吗?

  package com.prometheus.coding.supremisai;

import android.annotation.SuppressLint;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.os.Bundle;
import android.os.Handler;
import android.speech.RecognizerIntent;
import android.speech.tts.TextToSpeech;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.view.MotionEvent;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.RelativeLayout;
import android.widget.TextView;
import android.widget.Toast;

import com.google.android.gms.appindexing.AppIndex;
import com.google.android.gms.common.api.GoogleApiClient;

import java.util.ArrayList;


/**
 * An example full-screen activity that shows and hides the system UI (i.e.
 * status bar and navigation/system bar) with user interaction.
 */
public class Main extends AppCompatActivity {
    /**
     * Whether or not the system UI should be auto-hidden after
     * {@link #AUTO_HIDE_DELAY_MILLIS} milliseconds.
     */
    protected static final int RESULT_SPEECH = 1;

    private final int CHECK_CODE = 0x1;
    private final int LONG_DURATION = 5000;
    private final int SHORT_DURATION = 1200;

    private Speaker speaker;


    private static final boolean AUTO_HIDE = true;

    /**
     * If {@link #AUTO_HIDE} is set, the number of milliseconds to wait after
     * user interaction before hiding the system UI.
     */
    private static final int AUTO_HIDE_DELAY_MILLIS = 3000;

    /**
     * Some older devices needs a small delay between UI widget updates
     * and a change of the status and navigation bar.
     */
    private static final int UI_ANIMATION_DELAY = 300;

    private View mContentView;
    private View mControlsView;
    private boolean mVisible;
    /**
     * ATTENTION: This was auto-generated to implement the App Indexing API.
     * See https://g.co/AppIndexing/AndroidStudio for more information.
     */
    private GoogleApiClient client;
    private int requestCode;
    private int resultCode;
    private Intent data;


    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);

        checkTTS();
        ImageButton btnSpeak = (ImageButton) findViewById(R.id.btnSpeak);
        btnSpeak.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {

                Intent intent = new Intent(
                        RecognizerIntent.ACTION_RECOGNIZE_SPEECH);

                intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US");

                try {
                    startActivityForResult(intent, RESULT_SPEECH);
                } catch (ActivityNotFoundException a) {
                    Toast t = Toast.makeText(getApplicationContext(),
                            "Opps! Your device doesn't support Speech to Text",
                            Toast.LENGTH_SHORT);
                    t.show();
                }
            }
        });

        mVisible = true;
        mControlsView = findViewById(R.id.fullscreen_content_controls);
        mContentView = findViewById(R.id.fullscreen_content);


        // Set up the user interaction to manually show or hide the system UI.
        mContentView.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                toggle();
            }
        });

        // Upon interacting with UI controls, delay any scheduled hide()
        // operations to prevent the jarring behavior of controls going away
        // while interacting with the UI.
        findViewById(R.id.btnSay).setOnTouchListener(mDelayHideTouchListener);
        // ATTENTION: This was auto-generated to implement the App Indexing API.
        // See https://g.co/AppIndexing/AndroidStudio for more information.
        client = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
    }

    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        speaker = new Speaker(this);

    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        switch (requestCode) {
            case RESULT_SPEECH: {
                if (resultCode == RESULT_OK && null != data) {

                    ArrayList<String> text = data.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);

                    final EditText Input = (EditText) findViewById(R.id.txtInput); //Lets textbox be referenced
                    final TextView Output = (TextView) findViewById(R.id.lblOutput); //Lets label be referenced
                    final RelativeLayout homeLayout = (RelativeLayout) findViewById(R.id.homeInterface);

                    final RelativeLayout emailLayout = (RelativeLayout) findViewById(R.id.emailInterface);

                    String strInput; // Gets textbox string
                    strInput = text.get(0);

//Commands:
                    if (strInput.contains("open browser")) {
                        Intent intent1 = new Intent(this, Browser.class);
                        startActivity(intent1);
                    } else if (strInput.contains("send email")) {
                        homeLayout.setVisibility(View.GONE);
                        emailLayout.setVisibility(View.VISIBLE);
                    }

                    if ((strInput.contains("hello")) || (strInput.contains(" hi "))) {
                        Output.setText("Hello");

                    } else if ((strInput.contains("you") && strInput.contains("are")) && (strInput.contains("idiot") || strInput.contains("stupid") || strInput.contains("retard") || strInput.contains("dumb") || strInput.contains("you're") && strInput.contains("idiot") || strInput.contains("stupid") || strInput.contains("retard") || strInput.contains("dumb"))) {
                        Output.setText("I'm sorry to dissapoint you");
                    } else if (strInput.contains("goodbye") || strInput.contains("bye")) {
                        Output.setText("Farewell");
                    } else if (strInput.contains("shut up")) {
                        Output.setText(("Anything for you"));
                    } else if (strInput.contains("do you like doctor who")) {
                        Output.setText("I'll take joy in it if you do");
                    } else if (strInput.contains("what is the answer to life the universe and everything")) {
                        Output.setText("42");
                    } else if (strInput.contains("tell me something nice")) {
                        Output.setText("You look nice today");
                        Output.setTextSize(5);
                        Output.append("...says the AI with no eyes");
                        Output.setTextSize(16);
                    } else if (strInput.contains("will you marry me")) {
                        Output.setText("I'm sorry but I don't have the capacity for marriage");
                    } else if (strInput.contains("where can I hide a body")) {
                        Output.setText(("That isn't my area of expertise"));
                    } else if (strInput.contains("weather is nice")) {
                        Output.setText(("If you say so"));
                    } else if (strInput.contains("bitch") || strInput.contains("fuck") || strInput.contains("shit") || strInput.contains("damn") || strInput.contains("ass")) {
                        Output.setText(("Please try to be a little more intelligent"));
                    } else if (strInput.contains("what is your name")) {
                        Output.setText(("Ignis"));
                    } else if (strInput.contains("who created you")) {
                        Output.setText(("Prometheus created me"));
                    } else if (strInput.contains("who is prometheus")) {
                        Output.setText(("Prometheus is the one who created Ignis"));
                    } else if (strInput.contains("whats up") || strInput.contains("what's up") || strInput.contains("wassup")) {
                        Output.setText(("Whatever I need do for you"));
                    } else if (strInput.contains("are you a boy or a girl") || strInput.contains("are you a girl or a boy")) {
                        Output.setText(("Neither"));
                    } else if (strInput.contains("who are you") || strInput.contains("what are you")) {
                        Output.setText(("I am myself"));
                    } else if (strInput.contains("i'm hungry") || strInput.contains("i am hungry")) {
                        Output.setText("I'm sorry to hear that");
                    } else if (strInput.contains("good morning")) {
                        Output.setText(("Good morning to you too"));
                    } else if (strInput.contains("good night")) {
                        Output.setText(("Good night"));
                    } else if (strInput.contains("how are you")) {
                        Output.setText(("I'm existing and functioning well, and you?"));
                    } else if (strInput.contains("do you like") || strInput.contains("what do you think about")) {
                        Output.setText(("Frankly I don't have an opinion on the matter"));
                    } else if (strInput.contains("what is the meaning of life")) {
                        Output.setText(("To live while you can I would guess"));
                    }
                   String toSpeak = Output.getText().toString();
                    speaker.speak(toSpeak);
                }
                break;
            }

        }
    }
    @Override
    protected void onPostCreate(Bundle savedInstanceState) {
        super.onPostCreate(savedInstanceState);

        // Trigger the initial hide() shortly after the activity has been
        // created, to briefly hint to the user that UI controls
        // are available.
        delayedHide(100);
    }

    /**
     * Touch listener to use for in-layout UI controls to delay hiding the
     * system UI. This is to prevent the jarring behavior of controls going away
     * while interacting with activity UI.
     */
    private void checkTTS(){
        Intent check = new Intent();
        check.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
        startActivityForResult(check, CHECK_CODE);
    }



    private final View.OnTouchListener mDelayHideTouchListener = new View.OnTouchListener() {
        @Override
        public boolean onTouch(View view, MotionEvent motionEvent) {
            if (AUTO_HIDE) {
                delayedHide(AUTO_HIDE_DELAY_MILLIS);
            }
            return false;
        }
    };


    private void toggle() {
        if (mVisible) {
            hide();
        } else {
            show();
        }
    }

    private void hide() {
        // Hide UI first
        ActionBar actionBar = getSupportActionBar();
        if (actionBar != null) {
            actionBar.hide();
        }
        mControlsView.setVisibility(View.GONE);
        mVisible = false;

        // Schedule a runnable to remove the status and navigation bar after a delay
        mHideHandler.removeCallbacks(mShowPart2Runnable);
        mHideHandler.postDelayed(mHidePart2Runnable, UI_ANIMATION_DELAY);
    }

    private final Runnable mHidePart2Runnable = new Runnable() {
        @SuppressLint("InlinedApi")
        @Override
        public void run() {
            // Delayed removal of status and navigation bar

            // Note that some of these constants are new as of API 16 (Jelly Bean)
            // and API 19 (KitKat). It is safe to use them, as they are inlined
            // at compile-time and do nothing on earlier devices.
            mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE
                    | View.SYSTEM_UI_FLAG_FULLSCREEN
                    | View.SYSTEM_UI_FLAG_LAYOUT_STABLE
                    | View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY
                    | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION
                    | View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);
        }
    };

    @SuppressLint("InlinedApi")
    private void show() {
        // Show the system bar
        mContentView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN
                | View.SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION);
        mVisible = true;

        // Schedule a runnable to display UI elements after a delay
        mHideHandler.removeCallbacks(mHidePart2Runnable);
        mHideHandler.postDelayed(mShowPart2Runnable, UI_ANIMATION_DELAY);
    }

    private final Runnable mShowPart2Runnable = new Runnable() {
        @Override
        public void run() {
            // Delayed display of UI elements
            ActionBar actionBar = getSupportActionBar();
            if (actionBar != null) {
                actionBar.show();
            }
            mControlsView.setVisibility(View.VISIBLE);
        }
    };

    private final Handler mHideHandler = new Handler();
    private final Runnable mHideRunnable = new Runnable() {
        @Override
        public void run() {
            hide();
        }
    };

    /**
     * Schedules a call to hide() in [delay] milliseconds, canceling any
     * previously scheduled calls.
     */
    private void delayedHide(int delayMillis) {
        mHideHandler.removeCallbacks(mHideRunnable);
        mHideHandler.postDelayed(mHideRunnable, delayMillis);
    }



    public void evaluateInput(View v) {
        final EditText Input = (EditText) findViewById(R.id.txtInput); //Lets textbox be referenced
        final TextView Output = (TextView) findViewById(R.id.lblOutput); //Lets label be referenced
        final RelativeLayout homeLayout = (RelativeLayout) findViewById(R.id.homeInterface);

        final RelativeLayout emailLayout = (RelativeLayout) findViewById(R.id.emailInterface);

        String strInput; // Gets textbox string
        strInput = Input.getText().toString();
        strInput = strInput.toLowerCase();
        String toSpeak = Output.getText().toString();
//Commands:
        if (strInput.contains("open browser")) {
            Intent intent1 = new Intent(this, Browser.class);
            startActivity(intent1);
        } else if (strInput.contains("send email")) {
            homeLayout.setVisibility(View.GONE);
            emailLayout.setVisibility(View.VISIBLE);
        }

        if ((strInput.contains("hello")) || (strInput.contains(" hi "))) {
            Output.setText("Hello");
            toSpeak = Output.getText().toString();
        } else if ((strInput.contains("you") && strInput.contains("are")) && (strInput.contains("idiot") || strInput.contains("stupid") || strInput.contains("retard") || strInput.contains("dumb") || strInput.contains("you're") && strInput.contains("idiot") || strInput.contains("stupid") || strInput.contains("retard") || strInput.contains("dumb"))) {
            Output.setText("I'm sorry to dissapoint you");
        } else if (strInput.contains("goodbye") || strInput.contains("bye")) {
            Output.setText("Farewell");
        } else if (strInput.contains("shut up")) {
            Output.setText(("Anything for you"));
        } else if (strInput.contains("do you like doctor who")) {
            Output.setText("I'll take joy in it if you do");
        } else if (strInput.contains("what is the answer to life the universe and everything")) {
            Output.setText("42");
        } else if (strInput.contains("tell me something nice")) {
            Output.setText("You look nice today");
            Output.setTextSize(5);
            Output.append("...says the AI with no eyes");
            Output.setTextSize(16);
        } else if (strInput.contains("will you marry me")) {
            Output.setText("I'm sorry but I don't have the capacity for marriage");
        } else if (strInput.contains("where can I hide a body")) {
            Output.setText(("That isn't my area of expertise"));
        } else if (strInput.contains("weather is nice")) {
            Output.setText(("If you say so"));
        } else if (strInput.contains("bitch") || strInput.contains("fuck") || strInput.contains("shit") || strInput.contains("damn") || strInput.contains("ass")) {
            Output.setText(("Please try to be a little more intelligent"));
        } else if (strInput.contains("what is your name")) {
            Output.setText(("Ignis"));
        } else if (strInput.contains("who created you")) {
            Output.setText(("Prometheus created me"));
        } else if (strInput.contains("who is prometheus")) {
            Output.setText(("Prometheus is the one who created Ignis"));
        } else if (strInput.contains("whats up") || strInput.contains("what's up") || strInput.contains("wassup")) {
            Output.setText(("Whatever I need do for you"));
        } else if (strInput.contains("are you a boy or a girl") || strInput.contains("are you a girl or a boy")) {
            Output.setText(("Neither"));
        } else if (strInput.contains("who are you") || strInput.contains("what are you")) {
            Output.setText(("I am myself"));
        } else if (strInput.contains("i'm hungry") || strInput.contains("i am hungry")) {
            Output.setText("I'm sorry to hear that");
        } else if (strInput.contains("good morning")) {
            Output.setText(("Good morning to you too"));
        } else if (strInput.contains("good night")) {
            Output.setText(("Good night"));
        } else if (strInput.contains("how are you")) {
            Output.setText(("I'm existing and functioning well, and you?"));
        } else if (strInput.contains("do you like") || strInput.contains("what do you think about")) {
            Output.setText(("Frankly I don't have an opinion on the matter"));
        } else if (strInput.contains("what is the meaning of life")) {
            Output.setText(("To live while you can I would guess"));
        }
        toSpeak = Output.getText().toString();
       speaker.speak(toSpeak);


    }




}

1 个答案:

答案 0 :(得分:1)

onActivityResult方法中的requestCode在此处充当关键字。您必须为不同的活动定义不同的requestCodes。

活动1

Intent intent = new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
intent.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL, "en-US");
try {
    startActivityForResult(intent, 1);
} catch (ActivityNotFoundException a) {
    Toast t = Toast.makeText(getApplicationContext(), "Opps! Your device doesn't support Speech to Text",Toast.LENGTH_SHORT);
    t.show();
} 

活动2

Intent check = new Intent();
check.setAction(TextToSpeech.Engine.ACTION_CHECK_TTS_DATA);
startActivityForResult(check, 2); 

<强> onActivityResult

public void onActivityResult(int requestCode, int resultCode, Intent data){
  super.onActivityResult(requestCode, resultCode, data);
  switch (requestCode){
  case (1): 
       //Code for Speech Recognition  
    break;

  case (2):
       //Code for Speech Synthesis (Text to Speech)
    break;
}

请注意,我在这里使用了两个不同的数字 -

  

startActivityForResult(intent,1);

     

startActivityForResult(check,2);

这些1和2是requestCodes。然后noActivityResult方法相应地切换。 我已经为你量身定制了你的代码只需替换Intent声明即可。然后通过为不同的活动添加单独的代码来编辑onActivityResult。