分类:C#、Android、VS2015;
创建日期:2016-02-08
一、简介
进度条对话框(ProgressDialog)常用于不能在短时间内快速完成的操作,显示进度条的目的是为了让用户明白程序正在处理的进度,避免用户感觉莫名其妙。
本示例演示了两种进度条的基本用法:条形进度条和圆形进度条。
二、示例==Demo03ProgressDialog
1、运行截图
2、添加Demo03_ProgressDialog.axml文件
在layout文件夹下添加该文件。
3、添加Demo03ProgressDialog.cs文件
在SrcActivity文件夹下添加该文件。
using System;using Android.App;using Android.OS;using Android.Widget;namespace ch06demos.SrcActivity{ [Activity(Label = "Demo03ProgressDialog")] public class Demo03ProgressDialog : Activity { private int progress; private ProgressDialog dialog; protected override void OnCreate(Bundle bundle) { base.OnCreate(bundle); SetContentView(Resource.Layout.Demo03_ProgressDialog); var btnProgress = FindViewById
运行。