loading android

drawal/loading.xml

<?xml version="1.0" encoding="utf-8"?>
<animated-rotate android:drawable="@drawable/share_popout_icon_loading" android:pivotX="50.0%" android:pivotY="50.0%"
  xmlns:android="http://schemas.android.com/apk/res/android" />

、、-------------------------------------------------------------

总觉的自带的progressdialog很丑,所以为了让自己看着舒服一些,不得以就得自己定义样式了,自定义Progressdialog其实很简单,一个layout文件,一个shape文件

再来,然后再有一个资源文件就可以了。

一下是代码

自定义Progressdialog布局文件

[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="match_parent"
  5. android:background="@drawable/bg_dialog_shape"
  6. android:gravity="center" >
  7. <LinearLayout
  8. android:layout_width="wrap_content"
  9. android:layout_height="wrap_content"
  10. android:layout_gravity="center"
  11. android:gravity="center_horizontal"
  12. android:orientation="vertical" >
  13. <ProgressBar
  14. android:id="@+id/oahprogressbar"
  15. style="@android:style/Widget.ProgressBar.Small"
  16. android:layout_width="30dip"
  17. android:layout_height="30dip"
  18. android:indeterminateDrawable="@drawable/progress" />
  19. <TextView
  20. android:id="@+id/oaprogresstitle"
  21. android:layout_width="wrap_content"
  22. android:layout_height="wrap_content"
  23. android:layout_marginTop="20dip"
  24. android:gravity="center_vertical"
  25. android:text="正在验证..."
  26. android:textColor="@color/white" />
  27. </LinearLayout>
  28. </FrameLayout>

ProgressBar

[html] view plaincopy
  1. indeterminateDrawable的属性
[html] view plaincopy
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <rotate xmlns:android="http://schemas.android.com/apk/res/android" >
  3. <rotate xmlns:android="http://schemas.android.com/apk/res/android"
  4. android:drawable="@drawable/loading" <!--这就是一张图片,不需要每一个状态一张图片-->
  5. android:pivotX="50%"
  6. android:pivotY="50%" />
  7. </rotate>

重写ProgressDialog ,

[java] view plaincopy
  1. package com.zl.dialog.view;
  2. import com.zl.payslip.R;
  3. import android.app.Dialog;
  4. import android.app.ProgressDialog;
  5. import android.content.Context;
  6. import android.os.Bundle;
  7. /**
  8. * @author gqs
  9. * @version 创建时间:2012-11-23 上午10:59:43
  10. * 类说明
  11. */
  12. public class MyDialog  extends ProgressDialog{
  13. public PaySlipDialog(Context context, int theme) {
  14. super(context, theme);
  15. // TODO dvsdfads
  16. }
  17. public PaySlipDialog(Context context) {
  18. super(context);
  19. // TODO sdfsdf
  20. }
  21. @Override
  22. protected void onCreate(Bundle savedInstanceState) {
  23. // TODO Auto-generated method stub
  24. super.onCreate(savedInstanceState);
  25. //      progressDialog.setIndeterminate(true);
  26. setCancelable(false);
  27. //progressDialog.show()
  28. setContentView(R.layout.progressdialog_layout);
  29. }
  30. public void showDialog()
  31. {
  32. show();
  33. }
  34. }

loading android

最后在Acivity里面直接调用就行了

public void showDialog(Context context)

{

MyDialog dialog = new MyDialog(context);

dialog.showDialog();

}

上一篇:OSPFV3综合实验 (第三组)


下一篇:CentOS/Linux内存占用大,用Shell脚本自动定时清除/释放内存