Android Studio错误:“必须从UI线程调用方法getText,当前推断的线程是worker

时间:2017-06-08 03:36:57

标签: java android gettext

我遇到了关于gettext()的问题,Android工作室说'必须从UI线程调用方法getText,当前推断的线程是worker'。有人可以帮我这个或者有人可以提出如何解决这个问题吗? 谢谢!

package com.ibm.watsonvoicetts;

import android.os.AsyncTask;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

import com.ibm.watson.developer_cloud.android.library.audio.StreamPlayer;
import com.ibm.watson.developer_cloud.text_to_speech.v1.TextToSpeech;
import com.ibm.watson.developer_cloud.text_to_speech.v1.model.Voice;

public class MainActivity extends AppCompatActivity {

TextView textView;
EditText editText;
Button button;

StreamPlayer streamPlayer;


private TextToSpeech initTextToSpeechService(){
    TextToSpeech service = new TextToSpeech();
    String username = "";
    String password = "";
    service.setUsernameAndPassword(username, password);
    return service;
}

private class WatsonTask extends AsyncTask<String, Void, String> {
    @Override
    protected String doInBackground(String... textToSpeak) {
        runOnUiThread(new Runnable() {
            @Override
            public void run() {
                textView.setText("running the Watson thread");
            }
        });

        TextToSpeech textToSpeech = initTextToSpeechService();
        streamPlayer = new StreamPlayer();
        streamPlayer.playStream(textToSpeech.synthesize(
                String.valueOf(editText.getText()),【**here is the problem**】
                Voice.EN_MICHAEL).execute());

        return "text to speech done";
    }

    @Override
    protected void onPostExecute(String result) {
        textView.setText("TTS status: " + result);
    }

}

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    editText = (EditText) findViewById(R.id.editText);
    button = (Button) findViewById(R.id.button);
    textView = (TextView) findViewById(R.id.textView);

    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            System.out.println("the text to speech: " + editText.getText());
            textView.setText("TTS: " + editText.getText());

            WatsonTask task = new WatsonTask();
            task.execute(new String[]{});


        }
    });
}

}

2 个答案:

答案 0 :(得分:0)

您不应该像您一样getText致电AsyncTask。解决方案是将值传递给任务的构造函数。

更改

WatsonTask task = new WatsonTask(editText.getText());

private class WatsonTask extends AsyncTask<String, Void, String> {
    private final String text;
    public WatsonTask(String text) {
        super();
        this.text = text;
    }

streamPlayer.playStream(textToSpeech.synthesize(
            String.valueOf(text),
            Voice.EN_MICHAEL).execute());

答案 1 :(得分:0)

doInBackground()方法在不在UI线程中的不同线程上运行。

streamPlayer.playStream(textToSpeech.synthesize(
                String.valueOf(editText.getText()),【**here is the problem**】
                Voice.EN_MICHAEL).execute());

您正在此doInBackground()方法中调用edittext的getText()方法。这就是为什么它会给出错误的原因。任何与视图相关的工作,我们都必须在UI线程中完成。

您可以做的一件事是,您可以将此代码放在runOnUiThread中。