日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

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

發布時間:2025/3/20 57 豆豆
生活随笔 收集整理的這篇文章主要介紹了 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 转圈圈-阿里云开发者社区的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。