首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

Android解决:使用多线程和Handler同步更新UI

Android解决:使用多线程和Handler同步更新UI

如果运行时,可以看到滚动条由条慢慢变短,则说明程序成功了。截图如下,建议选择大点的文件做测试。
2. [图片] 2.jpg
3. [代码]main.xml布局文件
01<?xml version="1.0" encoding="utf-8"?>
02<ScrollView
03xmlns:Android="http://schemas.android.com/apk/res/android"
04Android:layout_height="wrap_content" android:id="@+id/scrollView1"android:layout_width="fill_parent">
05    <LinearLayout Android:id="@+id/linearLayout1"
06    Androidrientation="vertical"   
07    Android:layout_width="fill_parent"
08    Android:layout_height="wrap_content">
09<TextView
10Android:id="@+id/tv"
11    Android:layout_width="fill_parent"
12    Android:layout_height="wrap_content"   
13    />
14    </LinearLayout>
15</ScrollView>
4. [代码]FileRead.java
01public class FileRead {
02boolean readend=false;
03List<String> al=null;
04public  class ReadNodesThread extends Thread{//读取线程
05
06public void run()
07{
08al=new ArrayList<String>(100);
09al.clear();
10readend=false;
11int i=0;
12try {
13RandomAccessFile raf=new RandomAccessFile("/sdcard/test.txt","r");
14//try {
15while(raf.getFilePointer()<raf.length())
16{
17al.add(raf.readLine());
18//sleep(100);//如果测试文件太小,这里休眠是为了测试,
19}
20
21} catch (Exception e1) {
22// TODO Auto-generated catch block
23e1.printStackTrace();
24}
25readend=true;
26}
27};
28}
5. [代码]MultiThreadActivity.java
01public class MultiThreadActivity extends Activity {
02FileRead fr=null;
03Handler mHandler=null;
04int curi=0;
05Runnable updateui=null;
06String[] tmp=null;
07String s="";
08TextView tv=null;
09class ReadListener extends Thread{//监听线程,当数据更新数目大于10条时,更新UI
10
11public void run()
12{
13int i=0,newi=0;
14while(!fr.readend)
15{
16newi=fr.al.size();
17if((newi-i)>10)//新增数据大于10条,更新UI
18{
19i=newi;
20tmp=(String[])fr.al.toArray(new String[fr.al.size()]);
21mHandler.post(updateui);
22try {
23Thread.sleep(100);
24} catch (InterruptedException e) {
25// TODO Auto-generated catch block
26e.printStackTrace();
27}
28}
29}
30//数据读完了
31tmp=(String[])fr.al.toArray(new String[fr.al.size()]);
32mHandler.post(updateui);
33try {
34Thread.sleep(100);
35} catch (InterruptedException e) {
36// TODO Auto-generated catch block
37e.printStackTrace();
38}
39}
40};
4
返回列表