android view如何更新,Android 更新UI的两个方法

本文介绍了在Android开发中如何更新UI,重点讲解了两种方法:使用Activity的runOnUiThread()方法和通过Handler回调更新UI。这两种方法都是为了确保在主线程中执行UI操作,避免出现线程安全问题。示例代码展示了如何在按钮点击事件中利用runOnUiThread更新TextView的内容。
摘要由CSDN通过智能技术生成

Android 更新UI的两个方法

在Android的开发过程中,常常需要适时的更新UI。Androd中的UI是在主线程中更新的。如果在主线程之外的线程中直接更新,就会出现报错并抛出异常:

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

只有原始创建这个视图层次(view hierachy)的线程才能修改它的视图(view)

那么Android中该如何更新UI呢?

<1>. 利用Activity.runOnUiThread(Runnable)把更新UI的代码写在Runnable中

操作机制:如果当前线程是UI线程,那么该行动立即执行;如果不是,操作发布到事件队列的UI线程。

RunOnUiThreadDemo

布局文件:activity_mai.xml

xmlns:tools="http://schemas.android.com/tools"

android:layout_width="match_parent"

android:layout_height="match_parent"

android:orientation="vertical"

tools:context=".MainActivity" >

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="@string/hello_world"

/>

android:id="@+id/btn"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="点击更新界面"

/>

android:id="@+id/input_str"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

/>

Java文件:MainActivity.java

package com.zsl.runonuithreaddemo;

import android.os.Bundle;

import android.app.Activity;

import android.text.Editable;

import android.view.Menu;

import android.view.View;

import android.view.View.OnClickListener;

import android.widget.Button;

import android.widget.EditText;

import android.widget.TextView;

public class MainActivity extends Activity {

@Override

protected void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.activity_main);

final TextView viewText = (TextView)findViewById(R.id.input_str);

Button btn = (Button)findViewById(R.id.btn);

btn.setOnClickListener(new OnClickListener() {

@Override

public void onClick(View arg0) {

// TODO Auto-generated method stub

MainActivity.this.runOnUiThread(new Runnable() {

@Override

public void run() {

// TODO Auto-generated method stub

char[] str = "Android is intresting...".toCharArray();

viewText.setText(str, 0, str.length);

}

});

}

});

}

@Override

public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.

getMenuInflater().inflate(R.menu.main, menu);

return true;

}

}

运行结果:

904688466be3e98074e790a239e6ef12.png

<2>. 在Activity.onCreate(Bundle savedInstanceState)中创建一个Handler类的实例,利用Handler的回调实现。

事实上,我从这里的一篇英文文章中了解到,Android的handler中也是通过runOnUiThread实现的。

0b1331709591d260c1c78e86d0c51c18.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值