欢迎访问 生活随笔!

生活随笔

当前位置: 首页 >

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

发布时间:2025/3/20 63 豆豆
生活随笔 收集整理的这篇文章主要介绍了 android 等待圈_Android ProgressDialog 转圈圈-阿里云开发者社区 小编觉得挺不错的,现在分享给大家,帮大家做个参考.

转圏圏型的等待

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) {

//关闭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发消息

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"

/>

总结

以上是生活随笔为你收集整理的android 等待圈_Android ProgressDialog 转圈圈-阿里云开发者社区的全部内容,希望文章能够帮你解决所遇到的问题。

如果觉得生活随笔网站内容还不错,欢迎将生活随笔推荐给好友。