使用Animation list实现网络请求过程中的加载动画dialog

效果图

使用Animation list实现网络请求过程中的加载动画dialog_第1张图片

实现过程主要是借助于AnimationList实现帧动画

animation_list.xml文件


<animation-list android:oneshot="false"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/progress_loading_image_01" android:duration="150"/>
    <item android:drawable="@drawable/progress_loading_image_02" android:duration="150"/>
    <item android:drawable="@drawable/progress_loading_image_03" android:duration="150"/>
animation-list>

alert_dialog_loading.xml文件


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="10dp">

    <ImageView
        android:id="@+id/loadingIv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>

    <TextView
        android:id="@+id/loadingTv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:textSize="18sp"
        android:textColor="#ffffff" />
LinearLayout>

代码中的配置

 @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        // 设置加载过程中的显示文字
        createAnimationDailog(this,"拼命加载中……").show();

    }

    /**
     * 加载中的动画
     * @param context 上下文
     * @param tips 加载动画下面的提示信息
     * @return 将对话框对象直接返回
     */
    public static Dialog createAnimationDailog(final Context context, String tips) {
        Dialog dialog = new Dialog(context, R.style.dialog);
        dialog.setContentView(R.layout.alert_dialog_loading);
        dialog.setCanceledOnTouchOutside(false);
        ImageView animationView = (ImageView) dialog.findViewById(R.id.loadingIv);
        TextView textView = (TextView) dialog.findViewById(R.id.loadingTv);
        textView.setText(tips);
        animationView.setBackgroundResource(R.drawable.animation_list);
        AnimationDrawable animationDrawable = (AnimationDrawable) animationView.getBackground();
        animationDrawable.start();
        return dialog;
    }

就这么简单的实现了自定义的加载动画dialog!

你可能感兴趣的:(拿来就用)