Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

Awesome Lists containing this project

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();
```