Recently Google has released a new support library based on Material Design Guideline. The Codepath details the same components in this post.
The library can be already used with Gradle adding the following line in build.gradle:
dependencies {
...
compile 'com.android.support:design:25.3.1'
}
This is a simple example of usage:
<android.support.design.widget.FloatingActionButton
android:id="@+id/fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_add"
android:layout_gravity="bottom|end" />
See more FloatingActionButton example with Support Library.