I need to implement a floating action button, according to Google Design Guidelines, on my android application with API level 19.
However, I would know if some nativ
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:
See more FloatingActionButton example with Support Library.