The import android.support.design.widget.FloatingActionButton cannot be resolved[Eclipse]
Project Built target-API 23
<uses-sdk android:minSdkVersion="18" android:targetSdkVersion="22" /> Added jar lib folder :
2android-support-v7-appcompat.jar
appcompat-v7-23.1.1-sources.jar
design-23.1.1-sources.jar
2 Answers
Cannot resolve class
android.support.design.widget.FloatingActionButton use this one
com.google.android.material.floatingactionbutton.FloatingActionButton 1If you are using Android Studio -
then try to add this in your build.gradle(app level)
compile 'com.android.support:design:23.1.1' compile 'android-support-v7-appcompat:23.1.1' as you are targeting to API 23
2