App(初始化)

package com.bwei.zonghe_1.ui;

import android.app.Application;

import com.facebook.drawee.backends.pipeline.Fresco;

/**
 * Created by 杨柳 on 2018/9/21.
 */

public class App extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        Fresco.initialize(this);
    }
}

猜你喜欢

转载自blog.csdn.net/Yang_Liu_1/article/details/82809811