Невозможно разрешить рисованный fab_icon android
В моем приложении я использую com.android.support:design:25.0.0
получить FloatingActionButton
но когда-нибудь я установил значок для него
app:fab_icon="@drawable/ic_done"
Я получаю ошибку
Cannot Resolve symbol @drawable/ic_done
Я пробовал другие иконки, но ни одна из них не работает?
XML:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_cust"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
/>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab_nxt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end|bottom"
android:layout_margin="16dp"
app:fab_icon="@drawable/ic_done"
/>
</android.support.design.widget.CoordinatorLayout>
Зависимости Gradle:
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:24.2.1'
compile 'com.android.support:support-v4:24.2.1'
compile 'com.android.support:design:24.2.1'
compile 'com.getbase:floatingactionbutton:1.10.1'
testCompile 'junit:junit:4.12'
}
Редактировать:
Я также попытался заменить fab_icon на android: src, но ничего не получилось.
1 ответ
Попробуйте добавить src
вместо значка. Следуйте коду.
android:src="@android:drawable/ic_done"