A nice swipe layout that provides new actions with a material design look and feel.
Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Step 2. Add the dependency
dependencies {
implementation 'com.github.prolificinteractive:chandelier:${chandelierVersion}'
}
- Wrap your list around
ChandelierLayout
in your layouts or view hierarchy. - Add a list of
ActionItem
usingChandelierLayout#populateActionItems()
method. - Set a
OnActionSelectedListener
to listen for selected action and update the view accordingly.
Or
1 Wrap your list around ChandelierLayout
in your layouts or view hierarchy.
2. Create Objects that extend ActionItem
and add them using ChandelierLayout#populateActionItems()
method.
3. Override ActionItem#Execute()
method to execute the action when selected.
Example:
<com.prolificinteractive.chandelier.widget.ChandelierLayout
android:id="@+id/chandelier_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:al_background="?attr/colorPrimary"
>
<!-- Insert your list here -->
<include layout="@layout/example_recycler_view" />
</com.prolificinteractive.chandelier.widget.ChandelierLayout>
XML attributes:
-
al_background
Set background color -
al_elevation
Set elevation -
al_selector
Set background selector -
al_animate_to_start_duration
Set the duration that the layout takes to get into its original position. Default is 300 Millisecond. -
ai_margin
Set action item margin
Make sure to check sample for more examples.
Would you like to contribute? Fork us and send a pull request! Be sure to checkout our issues first.
Chandelier is Copyright (c) 2018 Prolific Interactive. It may be redistributed under the terms specified in the LICENSE file.
Chandelier is maintained and funded by Prolific Interactive. The names and logos are trademarks of Prolific Interactive.