Android开发之更优雅的使用Loading

Loading 是很普遍的需求,比如请求的时候需要显示 Loaing ,而一般的实现方式是在布局xml里添加一个 ProgressBar,但是这样写就有很多不便,每个页面的 layout 都要写一个 ProgressBar,显示的位置也固定了,还耦合了很多代码。

而 LoadingBar 就是为了跟方便的操作 Loading 而生,高度解耦,样式全部通过工厂类决定。

LoadingBar - 适合一些显示数据的操作,比如请求列表,注册,登录等

Factory - 决定了 loading 的样式,自定义样式只需实现 Factory

效果图 
Android开发之更优雅的使用Loading_第1张图片 Android开发之更优雅的使用Loading_第2张图片 
Android开发之更优雅的使用Loading_第3张图片 Android开发之更优雅的使用Loading_第4张图片

1、准备工作 
在 app 文件夹下 build.gradle 中引入,记得同步。

compile 'com.dyhdyh.loadingbar:loadingbar:1.4.4'
  •  

2、资源文件 
1)layout文件夹下的loading_process_dialog_color.xml




    


        

        
    

2)drawable文件夹下的dialog_style_xml_color.xml




    
        
    

3)drawable文件夹下的shap_progress_bg.xml



    
    

3、逻辑代码 
MainActivity.java

public class MainActivity extends AppCompatActivity {
    private View mParent;
    private Handler mHandler = new Handler();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        mParent = findViewById(R.id.ll_container);
    }

    public void show(View view) {
        LoadingBar.make(mParent).show();

        mHandler.postDelayed(new Runnable() {
            @Override
            public void run() {
                LoadingBar.cancel(mParent);
            }
        },2000);
    }

    public void showColor(View v) {
        CustomLoadingFactory factory = new CustomLoadingFactory();
        LoadingBar.make(mParent,factory).show();

        mHandler.postDelayed(new Runnable() {
            @Override
            public void run() {
                LoadingBar.cancel(mParent);
            }
        },5000);
    }


}

CustomLoadingFactory.java

package com.gyq.loadingview;

import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import com.dyhdyh.widget.loading.factory.LoadingFactory;

/**
 * Created by gyq on 2017/6/7 09:47
 */
public class CustomLoadingFactory implements LoadingFactory {
    @Override
    public View onCreateView(ViewGroup parent) {
        View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.loading_process_dialog_anim, parent, false);
        //View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.loading_process_dialog_color, parent, false);
       // View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.loading_process_dialog_icon, parent, false);

        return view;
    }
}

你可能感兴趣的:(Android开发)