日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 运维知识 > Android >内容正文

Android

android 等待圈_Android ProgressDialog 转圈圈-阿里云开发者社区

發(fā)布時間:2025/3/20 Android 32 豆豆
生活随笔 收集整理的這篇文章主要介紹了 android 等待圈_Android ProgressDialog 转圈圈-阿里云开发者社区 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

轉(zhuǎn)圏圏型的等待

ProgressBarDemo.java:

package com.lveyo.android.demo.progressbar;

import android.app.Activity;

import android.app.ProgressDialog;

import android.os.Bundle;

import android.os.Handler;

import android.os.Message;

import android.view.View;

import android.widget.Button;

import android.widget.TextView;

public class ProgressBarDemo extends Activity {

privateTextView statusTextView;

privateButton beginBtn;

privateProgressDialog progressDialog;

@Override

public voidonCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

statusTextView = (TextView)findViewById(R.id.status);

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

setListener();

}

privateHandler handler = new Handler(){

@Override

public voidhandleMessage(Message msg) {

//關(guān)閉ProgressDialog

progressDialog.dismiss();

//更新UI

statusTextView.setText("Completed!");

}};

private voidsetListener(){

beginBtn.setOnClickListener(new View.OnClickListener() {

@Override

public voidonClick(View v) {

//顯示ProgressDialog

progressDialog = ProgressDialog.show(ProgressBarDemo.this,"Loading...", "Please wait...", true, false);

//新建線程

newThread(){

@Override

public voidrun() {

//需要花時間計算的方法

Calculation.calculate(4);

//向handler發(fā)消息

handler.sendEmptyMessage(0);

}}.start();

}

});

}

}

Calculation.java

package com.lveyo.android.demo.progressbar;

public class Calculation {

publicstatic void calculate(int sleepSeconds){

try {

Thread.sleep(sleepSeconds * 1000);

} catch(Exception e) {

// TODO:handle exception

}

}

}

main.xml文件

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/hello"

/>

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="begin"

/>

總結(jié)

以上是生活随笔為你收集整理的android 等待圈_Android ProgressDialog 转圈圈-阿里云开发者社区的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。