安卓app_sl4_2水平进度条与圆形进度条_与线程的启动

安卓app_sl4_2水平进度条与圆形进度条_与线程的启动

复制代码
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.example.sl4_2.MainActivity" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/hello_world" />

    <ProgressBar
        android:id="@+id/progressBar1"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView1"
        android:layout_below="@+id/textView1"
        android:layout_marginTop="42dp" />

    <ProgressBar
        android:id="@+id/progressBar2"
        style="?android:attr/progressBarStyleLarge"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_below="@+id/progressBar1"
        android:layout_marginTop="28dp" />

</RelativeLayout>
复制代码
复制代码
package com.example.sl4_2;



import android.app.Activity;
import android.os.Bundle;
import android.os.Handler;
import android.os.Message;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.ProgressBar;
import android.widget.Toast;

public class MainActivity extends Activity {
    private ProgressBar horizonP;
    private ProgressBar circleP;
    private int mProgressStatus = 0;
    private Handler mHandler;//声明一个用于处理消息的Handler类的对象
    
    
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        horizonP=(ProgressBar) findViewById(R.id.progressBar1);
        circleP = (ProgressBar) findViewById(R.id.progressBar2);
        mHandler=new Handler(){
            @Override
              public void handleMessage(Message msg)
            {
                    if(msg.what==0x111)
                    {
                        horizonP.setProgress(mProgressStatus);
                        circleP.setProgress(100-mProgressStatus);
                    }
                    else
                    {
                        Toast.makeText(MainActivity.this, "耗时操作已经完成",Toast.LENGTH_SHORT).show();
                        horizonP.setVisibility(View.GONE);
                        circleP.setVisibility(View.GONE);;
                    }
        
            }

            };
            new Thread(new Runnable()
            {
                public void run()
                {
                    while(true)
                    {
                        mProgressStatus=doWork();
                        Message m=new Message();
                        if(mProgressStatus<100)
                        {
                            m.what=0x111;
                            mHandler.sendMessage(m);
                        }
                        else
                        {
                            m.what=0x110;
                            mHandler.sendMessage(m);
                            break;
                        }
                    }
                }
                private int doWork()
                {
                    mProgressStatus+=Math.random()*10;
                    try
                    {
                        Thread.sleep(200);
                    }
                    catch(InterruptedException e)
                    {
                        e.printStackTrace();
                    }
                    return mProgressStatus;
                }
                
            }).start();
    }
                


    @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;
    }

    @Override
    public boolean onOptionsItemSelected(MenuItem item) {
        // Handle action bar item clicks here. The action bar will
        // automatically handle clicks on the Home/Up button, so long
        // as you specify a parent activity in AndroidManifest.xml.
        int id = item.getItemId();
        if (id == R.id.action_settings) {
            return true;
        }
        return super.onOptionsItemSelected(item);
    }
}
复制代码

 

posted @   txwtech  阅读(24)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 震惊!C++程序真的从main开始吗?99%的程序员都答错了
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
历史上的今天:
2020-02-27 winxp系统连接服务器丢包解决方法
2020-02-27 cb52a_c++_STL_堆排序算法make_push_pop_sort_heap
2020-02-27 cb51a_c++_STL_算法_根据第n个元素排序nth_element
点击右上角即可分享
微信分享提示