Android SlideShow Widget alternatives and similar packages
Based on the "Other Widget" category.
Alternatively, view Android SlideShow Widget alternatives based on common mentions on social networks and blogs.
-
AndroidSlidingUpPanel
This library provides a simple way to add a draggable sliding up panel (popularized by Google Music and Google Maps) to your Android application. Brought to you by Umano. -
BottomBar
(Deprecated) A custom view component that mimics the new Material Design Bottom Navigation pattern. -
ShortcutBadger
An Android library supports badge notification like iOS in Samsung, LG, Sony and HTC launchers. -
SystemBarTint
[DEPRECATED] Apply background tinting to the Android system UI when using KitKat translucent modes -
TapTargetView
An implementation of tap targets from the Material Design guidelines for feature discovery. -
android-viewbadger
[DEPRECATED] A simple way to "badge" any given Android view at runtime without having to cater for it in layout -
android-iconify
Android integration of multiple icon providers such as FontAwesome, Entypo, Typicons,... -
android-stackblur
Android StackBlur is a library that can perform a blurry effect on a Bitmap based on a gradient or radius, and return the result. The library is based on the code of Mario Klingemann. -
DraggablePanel
DISCONTINUED. Android library used to create an awesome Android UI based on a draggable element similar to the last YouTube graphic component. -
aFileChooser
DISCONTINUED. [DEPRECATED] Android library that provides a file explorer to let users select files on external storage. -
Swipecards
A Tinder-like Android library to create the swipe cards effect. You can swipe left or right to like or dislike the content. -
TourGuide
TourGuide is an Android library that aims to provide an easy way to add pointers with animations over a desired Android View -
StickyGridHeaders
DISCONTINUED. An Android Library that makes it easy to make grid views with sectioned data and headers that stick to the top. -
FloatingView
FloatingView can make the target view floating above the anchor view with cool animation -
TileView
TileView is a subclass of android.view.ViewGroup that asynchronously displays, pans and zooms tile-based images. Plugins are available for features like markers, hotspots, and path drawing. -
Bubbles for Android
Bubbles for Android is an Android library to provide chat heads capabilities on your apps. With a fast way to integrate with your development. -
RippleView
View that imitates Ripple Effect on click which was introduced in Android L (for Android 2.3+) -
Android-ActionItemBadge
This library offers a simple method to add a small badge icon to your ActionBar-MenuItem -
android-sliding-layer-lib
DISCONTINUED. Highly customizable SlidingLayer as you have seen in Wunderlist -
SortableTableView
An Android library containing a simple TableView and an advanced SortableTableView providing a lot of customisation possibilities to fit all needs. -
ScratchView
ScratchView repo is UX Design involving scratch cards like views which are scratched to reveal the information they conceal. -
FabricView
A new canvas drawing library for Android. Aims to be the Fabric.js for Android. Supports text, images, and hand/stylus drawing input. The library has a website and API docs, check it out
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Android SlideShow Widget or a related project?
README
Android SlideShow Widget
A set of widgets to create smooth slide shows with ease. The slide show components are fully customizable and are not limited to pictures, you can slide whatever you want to (texts, etc.).
Demo
A demo of the widget is worth a thousand words. You can download it for free on Google Play.
Usage
Including the library
The easiest way to get the library included in your project is by using Gradle. Simply add the following line to your dependencies block:
dependencies {
compile 'com.marvinlabs:android-slideshow-widget:0.4.+@aar'
}
Of course, you can replace the version number by whichever version you need (you can have a look at this repository's tags to know which is the latest).
Getting a slide show in your fragment/activity
To include a slide show in your layout, simply use the following XML code snippet:
<com.marvinlabs.widget.slideshow.SlideShowView
android:id="@+id/slideshow"
android:layout_width="match_parent"
android:layout_height="match_parent" />
You can then get the SlideShowView
using the usual technique:
slideShowView = (SlideShowView) findViewById(R.id.slideshow);
The next step is to create the adapter that will bind your slide data to actual views. This is a
process very similar to what you do when working with the ListView
widget. In this library,
we have a few base adapters to help you create picture slide shows easily from images in your
application resources or from images on the Internet. The code would look like that:
adapter = new ResourceBitmapAdapter(this, new int[]{
R.raw.slide_01, R.raw.slide_02, R.raw.slide_03, R.raw.slide_04});
Once your activity is ready, or inside an event handler like a button click method, you can then start the slideshow:
slideShowView.play();
Customisable components
SlideShowAdapter
This is the key component to bind your slide data with actual view widgets. Have you heard about
ListView
and Adapter
? Well, this is exactly the same concept.
To get you started with picture slide shows, we have created a few useful adapters:
ResourceBitmapAdapter
will allow you to show a list of application resource drawablesRemoteBitmapAdapter
will allow you to show a list of images that are loaded from the Internet.
We also have a Picasso plugin library. That provides an adapter that works with Picasso instead of AsyncTasks. To use it, simply add the corresponding dependency using gradle:
dependencies {
compile 'com.marvinlabs:android-slideshow-widget-picasso-plugin:0.4.+@aar'
}
SlideTransitionFactory
You want something else than just a fade between slides? Simply implement this interface to return whichever view animator you want.
To make it easy for you, we already have a few default implementations that should cover most of your needs:
FadeTransitionFactory
if you want your slides to fade out and inSlideAndZoomTransitionFactory
if you want your slides to slide ou left and then zoom inNoTransitionFactory
if you want your slides to brutally show up
PlayList
You want to change the order of your slides? You need your slides to have a variable duration? Well, that's the interface to implement to change that.
To make it easy for you, we already have a few default implementations that should cover most of your needs:
SequentialPlayList
will play slides in order with a common default durationRandomPlayList
will play slides in a random order with a common default duration
About Vincent & MarvinLabs
I am a freelance developer located in Biarritz, France. You can have a look at my website to get to know me a little better. If you want to follow me, here are some links:
MarvinLabs is my digital studio specialised in native mobile applications and web sites. You can browse our website to get to know us a little better. If you want to get updates about our work, you can also:
Change log
0.5.0 (2014-06-03)
- [new] making the adapters more generic so that they can easily be used with existing data
- [new] added a Picasso plugin (an adapter to use Picasso to load remote images)
0.3.0 (2014-06-02)
- [new] new transition factories
- [new] playback control function (next, previous, pause, resume)
- [new] widget can be configured from XML
- [fix] issue #2
0.2.0 (2014-06-01)
- [new] a RandomPlayList implementation
- [new] listener for slide show events
- [new] listener for slide click event (similar to ListView's item click listener) (Thanks Arasthel)
- [fix] Some additional inline documentation
0.1.0 (2014-05-31)
- First release (beta)
- SlideShowView widget to play a slide show
- SlideTransitionFactory to customize the transitions between slides (with 2 default implementations)
- PlayList to customize the order and duration of slides (with 1 default implementations)
- SlideShowAdapter to bind slide data to actual view widgets (with 2 default implementations)
- Demo application