Android updates the UI in a non-UI thread

Source: Internet
Author: User

Android updates the UI in a non-UI thread

When updating the UI (Program Interface) in a non-UI thread, the following exception occurs:


So how can we refine the UI in a non-UI thread?

There are many methods. Here we mainly introduce two methods:

First, add logoff. prepare (); and logoff. loop (); after the code line to update the UI. For example:

New Thread () {@ Overridepublic void run () {// TODO Auto-generated method stubtxtRotation. setText ("update the UI in a non-UI Thread! "); Lorule. prepare (); lorule. loop () ;}}. start ();

Method 2: Use the following method:

new Thread(){@Overridepublic void run() {// TODO Auto-generated method stubshowToastByRunnable(MainActivity.this, "", 3000);}}.start();
/*** Use Toast * @ param context * @ param text in a non-UI thread to display the message content * @ param duration the message display time **/private void showToastByRunnable (final Context context, final CharSequence text, final int duration) {Handler handler = new Handler (logoff. getMainLooper (); handler. post (new Runnable () {@ Override public void run () {Toast. makeText (context, text, duration ). show ();}});}




Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.