Commit 9b4a5f15 by sikang

test

parent f3db2a9a
package tech.starwin;
import android.app.Application;
import android.content.Context;
import android.view.View;
import com.scwang.smartrefresh.layout.SmartRefreshLayout;
import com.scwang.smartrefresh.layout.api.DefaultRefreshFooterCreator;
import com.scwang.smartrefresh.layout.api.DefaultRefreshHeaderCreator;
import com.scwang.smartrefresh.layout.api.RefreshFooter;
import com.scwang.smartrefresh.layout.api.RefreshHeader;
import com.scwang.smartrefresh.layout.api.RefreshLayout;
import com.scwang.smartrefresh.layout.footer.ClassicsFooter;
import com.scwang.smartrefresh.layout.header.ClassicsHeader;
import tech.starwin.R;
import tech.starwin.network.Gateway;
import tech.starwin.utils.PreferencesManager;
/**
* Created by SiKang on 2018/9/30.
*/
public class LibConfig {
private static Context CONTEXT;
public static boolean DEBUG;
public static String APPLICATION_ID;
public static String BUILD_TYPE;
public static String FLAVOR;
public static int VERSION_CODE;
public static String VERSION_NAME;
public static String FLAVOR_default;
public static String FLAVOR_server;
public static String AGREEMENT_URL;
public static String APP_URL;
public static String BUGLY_APP_ID;
public static String CONTRACT_URL;
public static String HOTLINE;
public static String LOAN_AGREEMENT;
public static String LOGIN_ACTIVITY_ACTION;
public static String ROOT_DIR;
public static String ADMIN_HOST;
public static String API_BASE_URL;
public static String GATEWAY_HOST_G0;
public static String GATEWAY_HOST_G1;
public static String HARVESTER_IP;
public static int HARVESTER_PORT;
public static ButterKnifeBinder butterKnifeBinder;
public static Context getContext() {
if (CONTEXT == null)
throw new RuntimeException("context is null ! you must execute LibConfig.bindApplication(application) in your Appliaction");
return CONTEXT;
}
/**
* 为Library绑定一个Context
*/
public static void initLib(Application application) {
if (application != null) {
CONTEXT = application;
PreferencesManager.get().init(application);
Gateway.init(PreferencesManager.get().getGatewayInfo());
}
}
/**
* 用于在Base 中 实现Butterknife.bind()的功能
*
* @param binder 实现 ButterKnifeBinder.bindView() 方法,在其中做Butterknife.bind() ,功能
*/
public static void setButterKnifeBinder(ButterKnifeBinder binder) {
butterKnifeBinder = binder;
}
public static Object bindView(Object obj, View view) {
if (butterKnifeBinder != null) {
return butterKnifeBinder.bindView(obj, view);
}
return null;
}
public static void unBindView(Object unBinder) {
if (butterKnifeBinder != null) {
butterKnifeBinder.unBind(unBinder);
}
}
public interface ButterKnifeBinder {
Object bindView(Object obj, View view);
void unBind(Object obj);
}
/**
* SmartRefresh 默认风格
* */
static {
//设置全局的Header构建器
SmartRefreshLayout.setDefaultRefreshHeaderCreator(new DefaultRefreshHeaderCreator() {
@Override
public RefreshHeader createRefreshHeader(Context context, RefreshLayout layout) {
layout.setPrimaryColorsId(R.color.color_main, android.R.color.white);//全局设置主题颜色
return new ClassicsHeader(context);//.setTimeFormat(new DynamicTimeFormat("更新于 %s"));//指定为经典Header,默认是 贝塞尔雷达Header
}
});
//设置全局的Footer构建器
SmartRefreshLayout.setDefaultRefreshFooterCreator(new DefaultRefreshFooterCreator() {
@Override
public RefreshFooter createRefreshFooter(Context context, RefreshLayout layout) {
//指定为经典Footer,默认是 BallPulseFooter
return new ClassicsFooter(context).setDrawableSize(20);
}
});
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment