我使用Font Binder库但是在编译时遇到了这个错误
C:\Users\Gonzalo\AndroidStudioProjects\firebase\app\build\intermediates\data-binding-layout-out\debug\layout\fragment_edit_name.xml
Error:(19) No resource identifier found for attribute 'font' in package 'android'
我在gradle中设置了数据绑定
dataBinding {
enabled true
}
我添加了库
compile 'com.github.nitrico.fontbinder:fontbinder:1.0.3'
这是我的XML
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Fecha"
android:font='@{"avquest"}'
android:id="@+id/textView"/>
字体位于
\app\src\main\assets\fonts
感谢您的帮助!