您好我正在尝试在我的项目中使用BeardedHen引导程序库。我添加了gradle依赖项。 implementation 'com.beardedhen:androidbootstrap:2.3.2'
然后将font-awesome web ttf文件添加到我的assets文件夹中。但我收到以下错误。提前谢谢。
这是我的BootstrapButton:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:bootstrapbutton="http://schemas.android.com/apk/res-auto"
tools:context=".FileNameViewFragment">
<com.beardedhen.androidbootstrap.BootstrapButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
bootstrapbutton:bb_icon_right="fa-android"
bootstrapbutton:bb_type="success"
android:text="success"
app:bootstrapBrand="success"
app:fontAwesomeIcon="fa_arrow_left"
app:typicon="ty_adjust_contrast"
/>
</android.support.constraint.ConstraintLayout>