我想在我的项目中使用书法库,但在我的应用程序中使用此代码来更改谷歌地图语言:
@Override
protected void attachBaseContext(Context newBase) {
}
使用书法我应该使用这个代码:
@Override
protected void attachBaseContext(Context newBase) {
super.attachBaseContext(CalligraphyContextWrapper.wrap(newBase));
}
我如何attachBaseContext
在我的项目中使用两个?