如何使用run runOnUithread?

时间:2014-01-19 02:50:18

标签: java android json

我正在处理的应用程序有一个连接到mysql数据库的登录/注册,起初我正在运行UI Thread上的所有内容我后来发现它无法运行,因为反对运行长代码Android的UI Thread。我尝试编辑我的代码,以便在我添加的新Thread上运行长任务。 。现在我的应用程序注册我在mysql中看到结果但我的应用程序因为此错误而继续关闭

android.view.ViewRootImpl$CalledFromWrongThreadException: 
Only the original thread that created a view hierarchy can touch its views.

错误是可以理解的,但我不知道如何将ViewView运回UI Thread

我已经对runOnuithread进行了一些研究,但我不知道将它放在我的代码中的哪个位置,或天气我将之前添加的新Thread放在错误的位置以便开始

任何人都可以帮我解决这个问题

这是一段代码

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.register);

    // Importing all assets like buttons, text fields
    inputFullName = (EditText) findViewById(R.id.registerName);
    inputEmail = (EditText) findViewById(R.id.registerEmail);
    inputPassword = (EditText) findViewById(R.id.registerPassword);
    btnRegister = (Button) findViewById(R.id.btnRegister);
    btnLinkToLogin = (Button) findViewById(R.id.btnLinkToLoginScreen);
    registerErrorMsg = (TextView) findViewById(R.id.register_error);

    // Register Button Click event
    btnRegister.setOnClickListener(new View.OnClickListener() {  

        public void onClick(View view) {
             /** According with the new StrictGuard policy,  running long tasks on the Main UI thread is not possible
            So creating new thread to create and execute http operations */
            new Thread (new Runnable() {
                @Override
                 public void run() {
            //
            String name = inputFullName.getText().toString();
            String email = inputEmail.getText().toString();
            String password = inputPassword.getText().toString();
            UserFunctions userFunction = new UserFunctions();

            JSONObject json = userFunction.registerUser(name, email, password);

            // check for login response
            try {
                //

                //
                if (json.getString(KEY_SUCCESS) != null) {

                    registerErrorMsg.setText("");
                    String res = json.getString(KEY_SUCCESS); 
                    if(Integer.parseInt(res) == 1){
                        // user successfully registred
                        // Store user details in SQLite Database
                        DatabaseHandler db = new DatabaseHandler(getApplicationContext());
                        JSONObject json_user = json.getJSONObject("user");

                        // Clear all previous data in database
                        userFunction.logoutUser(getApplicationContext());
                        db.addUser(json_user.getString(KEY_NAME), json_user.getString(KEY_EMAIL), json.getString(KEY_UID), json_user.getString(KEY_CREATED_AT));                        
                        // Launch Dashboard Screen
                        Intent dashboard = new Intent(getApplicationContext(), MainActivity.class);
                        // Close all views before launching Dashboard
                        dashboard.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
                        startActivity(dashboard);
                        // Close Registration Screen
                        finish();
                    }else{
                        // Error in registration
                        registerErrorMsg.setText("Error occured in registration");
                    }
                }//
            } catch (JSONException e) {
                e.printStackTrace();
            }
        }
            }).start();
        }
    });

    // Link to Login Screen
    btnLinkToLogin.setOnClickListener(new View.OnClickListener() {

        public void onClick(View view) {

            Intent i = new Intent(getApplicationContext(),
                    LoginActivity.class);
            startActivity(i);
            // Close Registration View
            finish();
        }
    });
}
}

1 个答案:

答案 0 :(得分:1)

由于您似乎将网络代码与UI代码混合在一起,因此我不会尝试为您编写代码。我可以告诉你它应该如何,并假设你可以自己重新安排代码,因为你知道它的全部功能。

好的,在您run()内放置网络代码,然后当您需要更新UI时,您可以

runOnUiThread(new Runnable()
{
    @Override
    public void run()
    {
        // code to update UI
    }
});

话虽如此,我建议您使用AsyncTask进行网络操作。这使得它更容易,因为它已经具有后台内容和更新UI的功能。您启动任务并doInBackground()运行,这是您执行所有网络操作的地方。然后,您可以更新任何UI其他3种方法中的AsyncTasks

See this answer有关使用AsyncTask的示例,以及上述文档的链接。