当使用外部字体时。使用Typeface
先从assert文件夹中获取字体。
AssetManager mgr = getAsserts();
获取字体
Typeface tf = Typeface.createFromAssert(mgr,"fonts/a.ttf");
textview.setTypeface(tf);
Butterknife 注解使用
@Bind(R.id.splash_view)
SplashView splash_view;
在activity的onCreate()方法中,使用Butterknife.bind(this)方法即可绑定。
SplashActivity继承的是 MVPbasedAcitvity。
里面有一个方法专门返回布局,即:
@override
protected int provideContentViewId(){
return R.layout.activity_splash;
}
MVPBaseAcitivity 中有以下一些方法:
Butterknife