4

我在 postexecute() 上执行 AlertDialog 时遇到问题。引发此异常 原因:java.lang.RuntimeException: Can't create handler inside thread that has not called Looper.prepare() 或者,当我将 AlertDialog.Builder 放入其中时,它不起作用请帮忙。此外,在输入了错误密码的情况下,该过程终止。在用户名或密码无效的情况下如何调用 Toast 方法下面是代码片段

public void Login() {

    // Toast.makeText(getBaseContext(), pass.getText() + " "
    // +user.getText(),
    // Toast.LENGTH_SHORT).show();

    String url = "http://107.20.195.151/mcast_ws/" + "?user="
            + user.getText().toString() + "&password="
            + pass.getText().toString();

    result = getHttpResponse(url);  
}


String result;
private String getHttpResponse(String location) {
    result = "";
    URL url = null;
    Log.d(LOGTAG, " " + "location " + location);
    try {
        url = new URL(location);
    } catch (MalformedURLException e) {
        Log.e(LOGTAG, " " + "error" + e.getMessage());
    }
    if (url != null) {
        try {
            HttpURLConnection connection = (HttpURLConnection) url
                    .openConnection();
            BufferedReader in = new BufferedReader(new InputStreamReader(
                    connection.getInputStream()));
            String inputLine;
            int lineCount = 0;
            while ((inputLine = in.readLine()) != null) {
                result += inputLine.trim();
            }

            in.close();
            connection.disconnect();
        } catch (Exception e) {

            Log.e(LOGTAG, " " + "IOError " + e.getMessage());
            Toast.makeText(getBaseContext(), "No Internet Access",
                    Toast.LENGTH_SHORT);
        }
    } else {
        Log.e(LOGTAG, " " + "url" + url);
    }
    return result;
}

class PostToTwitter extends AsyncTask<String, Void, String> {

    @Override
    protected String doInBackground(String... params) {

        Login();
        Log.d(LOGTAG, "Success");
        Log.d(LOGTAG, result);
        Log.d(LOGTAG, result.substring(0, 16).trim());
        // Log.d(TweetActivity.getLogtag(),"Successfully Posted: " +
        // params[0]);

        return "success";
    }

    @Override
    protected void onPostExecute(String r) {
        // TODO Auto-generated method stub
        super.onPostExecute(result);
        String msg = "Login successful";

        if (result.substring(0, 16).trim().equals(msg)) {
            // System.out.println(result.substring(0, 16).trim());
            Log.d(LOGTAG, " " + "Connection Test" + result);
            AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());
            builder.setMessage("Are you sure send this SMS?")
                   .setCancelable(false)
                   .setPositiveButton("Yes", new DialogInterface.OnClickListener() {
                       public void onClick(DialogInterface dialog, int id) {
                            //...Attach another thread event to send the sms
                       }
                   })
                   .setNegativeButton("No", new DialogInterface.OnClickListener() {
                       public void onClick(DialogInterface dialog, int id) {
                            dialog.cancel();
                       }
                   });
            Log.e(LOGTAG, "Error detected 2");
            AlertDialog alert = builder.create();
            alert.show();
            //return  "success";
            // Toast.makeText(getBaseContext(),
            // "Login Succesful",Toast.LENGTH_SHORT).show();

        } else {
            Toast.makeText(getBaseContext(),
                    "Login UnSuccesful. Check Username or password",
                    Toast.LENGTH_SHORT).show();
            //return null;
        }
        // Toast.makeText(getApplicationContext(), result
        // ,Toast.LENGTH_SHORT).show();
        Log.e(LOGTAG, "Error detected");

        /*
        Intent i = new Intent("com.sms.subsahara.COMPOSESMS");
        startActivity(i);
        //Log.e(LOGTAG, " " + "error2");*/

    }

}

在应用 Alex 的建议时,我修改了上面的原始代码,但仍然出现错误。下面是 logcat 的异常

E/AndroidRuntime(  326): Uncaught handler: thread main exiting due to uncaught exception
E/AndroidRuntime(  326): android.view.WindowManager$BadTokenException: Unable to add window -- token null is not for an application
E/AndroidRuntime(  326):        at android.view.ViewRoot.setView(ViewRoot.java:472)
E/AndroidRuntime(  326):        at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:177)
E/AndroidRuntime(  326):        at android.view.WindowManagerImpl.addView(WindowManagerImpl.java:91)
E/AndroidRuntime(  326):        at android.app.Dialog.show(Dialog.java:239)
E/AndroidRuntime(  326):        at com.sms.subsahara.WebMessengerActivity$PostToTwitter.onPostExecute(WebMessengerActivity.java:216)
E/AndroidRuntime(  326):        at com.sms.subsahara.WebMessengerActivity$PostToTwitter.onPostExecute(WebMessengerActivity.java:1)
E/AndroidRuntime(  326):        at android.os.AsyncTask.finish(AsyncTask.java:417)
E/AndroidRuntime(  326):        at android.os.AsyncTask.access$300(AsyncTask.java:127)
E/AndroidRuntime(  326):        at android.os.AsyncTask$InternalHandler.handleMessage(AsyncTask.java:429)
E/AndroidRuntime(  326):        at android.os.Handler.dispatchMessage(Handler.java:99)
E/AndroidRuntime(  326):        at android.os.Looper.loop(Looper.java:123)
E/AndroidRuntime(  326):        at android.app.ActivityThread.main(ActivityThread.java:4363)
E/AndroidRuntime(  326):        at java.lang.reflect.Method.invokeNative(Native Method)
E/AndroidRuntime(  326):        at java.lang.reflect.Method.invoke(Method.java:521)
E/AndroidRuntime(  326):        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:860)
E/AndroidRuntime(  326):        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:618)
E/AndroidRuntime(  326):        at dalvik.system.NativeStart.main(Native Method)
4

4 回答 4

8

doInBackground不与 UI 线程同步,这意味着您不能从方法内直接操作 UI 元素、启动对话框等。修复很容易。只需将AlertDialog代码移动到onPostExecute方法(UI 线程同步)。

使用AsyncTasks 时,请记住:

  1. doInBackground旨在执行潜在的昂贵操作(网络访问、套接字连接、数据库查询等)
  2. onPostExecute如果您愿意,可以对结果进行一些处理(此方法与 UI 线程同步,因此您可以直接操作 UI 元素)
于 2012-06-27T03:27:30.800 回答
3

DoInBackground() 仅在与主 UI 线程不同的线程上执行。这就是 AsyncTask 的重点。

有 3 种方法可以将结果发布到 UI(几乎......到 UI 线程)

  1. 使用 onPostExecute 方法。你得到传入的 doInBackground 方法的返回值,你可以用它做任何事情。(我认为这符合您的用例。)

  2. 如果您的任务正在进行中,并且您希望在 UI 上获得少量信息,例如进度条更新,请使用 doInBackground 方法中的 publishProgress(...),然后将其传递给您的 onProgressUpdate(...) 方法在 AsyncTask 中,它将在 UI 线程上运行。

  3. 与 2 类似,但您可以使用 RunOnUiThread(...) 便捷方法抛出一个 runnable 以在 UI 线程中运行。当您有多个匿名方法时,可能不是最漂亮的代码,但它是一种快速而肮脏的方式。请注意,此方法在 Activity 类上可用,而不是在 Context 类上可用,这在某些情况下可能会破坏交易。

于 2012-06-27T03:53:24.740 回答
1

我猜是因为你的Login()是在AsyncTask里面执行的,而不是在mainUI里面执行的。可以在onPostExecute handler里面出来,回到主线程执行;也可以在 onPostExecute UIThread 中使用:

runOnUiThread(new Runnable() {
                 @Override
                    public void run() {
                    Login();    
                   }
                });

我希望它可以帮助你。

于 2012-06-27T03:20:39.513 回答
0

@亚历克斯洛克伍德

AsyncTask.doInBackground(Void..params)适合非常长时间和重复的操作,更好的替代品是HandlerThread.

原因:

在 android 3.2 中,AsyncTask 以一种重要的方式改变了它的实现。从 Android 3.2 开始,AsyncTask不再为 AsyncTask 中的每个实例创建一个线程,而是使用执行器在单个后台线程上为所有 AsyncTask 运行后台工作!这意味着每个 AsyncTask 线程必须一个接一个地运行。因此,例如,如果您有一个长的 AsyncTask 线程(来自 REST 的图像提取器),我建议使用 HandlerThread 代替,因为长任务运行线程可能会延迟整个链。

可以通过使用线程池执行器来安全地并行运行 AsyncTask,但我不知道确切原因,程序员不建议这样做,背后有几个与本文无关的原因。但如果你这样做,我建议你做自己的线程,在必要时使用处理程序与主线程通信。

于 2013-09-18T19:36:47.153 回答