Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/telly/FloatingAction
A basic implementation of Floating Action pattern
https://github.com/telly/FloatingAction
Last synced: about 1 month ago
JSON representation
A basic implementation of Floating Action pattern
- Host: GitHub
- URL: https://github.com/telly/FloatingAction
- Owner: telly
- License: mit
- Created: 2014-06-24T01:27:10.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2020-10-02T14:01:19.000Z (about 4 years ago)
- Last Synced: 2024-08-01T13:27:38.238Z (4 months ago)
- Language: Java
- Homepage:
- Size: 524 KB
- Stars: 312
- Watchers: 19
- Forks: 41
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-mobile-ui - telly/FloatingAction
README
FloatingAction
==============A basic implementation of Floating Action Button pattern as seen on Material Design
![Le demo](http://i.imgur.com/Z0nTwvj.gif)
### Demo
[![FloatingAction Demo on Google Play Store](http://developer.android.com/images/brand/en_generic_rgb_wo_60.png)](https://play.google.com/store/apps/details?id=com.telly.floatingaction.demo)
### Usage
See demo, at this point latest version is `0.0.6`
```groovy
compile 'com.telly:floatingaction:(insert latest version)'
``````java
mFloatingAction = FloatingAction.from(this)
.listenTo(mListView)
.icon(R.drawable.ic_action_about)
.listener(this)
.build();
```