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.

Overview

Maven Central Badge

Note: we are not actively responding to issues right now. If you find a bug, please submit a PR.

Android Sliding Up Panel

This library provides a simple way to add a draggable sliding up panel (popularized by Google Music and Google Maps) to your Android application.

As seen in Umano Android App (now acquired by Dropbox):

SlidingUpPanelLayout

Known Uses in Popular Apps

If you are using the library and you would like to have your app listed, simply let us know.

Importing the Library

Simply add the following dependency to your build.gradle file to use the latest version:

dependencies {
    repositories {
        mavenCentral()
    }
    compile 'com.sothree.slidinguppanel:library:3.4.0'
}

Usage

  • Include com.sothree.slidinguppanel.SlidingUpPanelLayout as the root element in your activity layout.
  • The layout must have gravity set to either top or bottom.
  • Make sure that it has two children. The first child is your main layout. The second child is your layout for the sliding up panel.
  • The main layout should have the width and the height set to match_parent.
  • The sliding layout should have the width set to match_parent and the height set to either match_parent, wrap_content or the max desireable height. If you would like to define the height as the percetange of the screen, set it to match_parent and also define a layout_weight attribute for the sliding view.
  • By default, the whole panel will act as a drag region and will intercept clicks and drag events. You can restrict the drag area to a specific view by using the setDragView method or umanoDragView attribute.

For more information, please refer to the sample code.

<com.sothree.slidinguppanel.SlidingUpPanelLayout
    xmlns:sothree="http://schemas.android.com/apk/res-auto"
    android:id="@+id/sliding_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="bottom"
    sothree:umanoPanelHeight="68dp"
    sothree:umanoShadowHeight="4dp">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="Main Content"
        android:textSize="16sp" />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center|top"
        android:text="The Awesome Sliding Up Panel"
        android:textSize="16sp" />
</com.sothree.slidinguppanel.SlidingUpPanelLayout>

For smooth interaction with the ActionBar, make sure that windowActionBarOverlay is set to true in your styles:

<style name="AppTheme">
    <item name="android:windowActionBarOverlay">true</item>
</style>

However, in this case you would likely want to add a top margin to your main layout of ?android:attr/actionBarSize or ?attr/actionBarSize to support older API versions.

Caveats, Additional Features and Customization

  • If you are using a custom umanoDragView, the panel will pass through the click events to the main layout. Make your second layout clickable to prevent this.
  • You can change the panel height by using the setPanelHeight method or umanoPanelHeight attribute.
  • If you would like to hide the shadow above the sliding panel, set shadowHeight attribute to 0.
  • Use setEnabled(false) to completely disable the sliding panel (including touch and programmatic sliding)
  • Use setTouchEnabled(false) to disables panel's touch responsiveness (drag and click), you can still control the panel programatically
  • Use getPanelState to get the current panel state
  • Use setPanelState to set the current panel state
  • You can add parallax to the main view by setting umanoParallaxOffset attribute (see demo for the example).
  • You can set a anchor point in the middle of the screen using setAnchorPoint to allow an intermediate expanded state for the panel (similar to Google Maps).
  • You can set a PanelSlideListener to monitor events about sliding panes.
  • You can also make the panel slide from the top by changing the layout_gravity attribute of the layout to top.
  • You can provide a scroll interpolator for the panel movement by setting umanoScrollInterpolator attribute. For instance, if you want a bounce or overshoot effect for the panel.
  • By default, the panel pushes up the main content. You can make it overlay the main content by using setOverlayed method or umanoOverlay attribute. This is useful if you would like to make the sliding layout semi-transparent. You can also set umanoClipPanel to false to make the panel transparent in non-overlay mode.
  • By default, the main content is dimmed as the panel slides up. You can change the dim color by changing umanoFadeColor. Set it to "@android:color/transparent" to remove dimming completely.

Scrollable Sliding Views

If you have a scrollable view inside of the sliding panel, make sure to set umanoScrollableView attribute on the panel to supported nested scrolling. The panel supports ListView, ScrollView and RecyclerView out of the box, but you can add support for any type of a scrollable view by setting a custom ScrollableViewHelper. Here is an example for NestedScrollView

public class NestedScrollableViewHelper extends ScrollableViewHelper {
  public int getScrollableViewScrollPosition(View scrollableView, boolean isSlidingUp) {
    if (mScrollableView instanceof NestedScrollView) {
      if(isSlidingUp){
        return mScrollableView.getScrollY();
      } else {
        NestedScrollView nsv = ((NestedScrollView) mScrollableView);
        View child = nsv.getChildAt(0);
        return (child.getBottom() - (nsv.getHeight() + nsv.getScrollY()));
      }
    } else {
      return 0;
    }
  }
}

Once you define your helper, you can set it using setScrollableViewHelper on the sliding panel.

Implementation

This library was initially based on the opened-sourced SlidingPaneLayout component from the r13 of the Android Support Library. Thanks Android team!

Requirements

Tested on Android 2.2+

Other Contributors

  • Nov 23, 15 - @kiyeonk - umanoScrollInterpolator support
  • Jan 21, 14 - ChaYoung You (@yous) - Slide from the top support
  • Aug 20, 13 - @gipi - Android Studio Support
  • Jul 24, 13 - Philip Schiffer (@hameno) - Maven Support
  • Oct 20, 13 - Irina Preșa (@iriina) - Anchor Support
  • Dec 1, 13 - (@youchy) - XML Attributes Support
  • Dec 22, 13 - Vladimir Mironov (@MironovNsk) - Custom Expanded Panel Height

If you have an awesome pull request, send it over!

Changelog

  • 3.4.0
    • Use the latest support library 26 and update the min version to 14.
    • Bug fixes
  • 3.3.1
    • Lots of bug fixes from various pull requests.
    • Removed the nineoldandroids dependency. Use ViewCompat instead.
  • 3.3.0
    • You can now set a FadeOnClickListener, for when the faded area of the main content is clicked.
    • PanelSlideListener has a new format (multiple of them can be set now
    • Fixed the setTouchEnabled bug
  • 3.2.1
    • Add support for umanoScrollInterpolator
    • Add support for percentage-based sliding panel height using layout_weight attribute
    • Add ScrollableViewHelper to allow users extend support for new types of scrollable views.
  • 3.2.0
    • Rename umanoParalaxOffset to umanoParallaxOffset
    • RecyclerView support.
  • 3.1.0
    • Added umanoScrollableView to supported nested scrolling in children (only ScrollView and ListView are supported for now)
  • 3.0.0
    • Added umano prefix for all attributes
    • Added clipPanel attribute for supporting transparent panels in non-overlay mode.
    • setEnabled(false) - now completely disables the sliding panel (touch and programmatic sliding)
    • setTouchEnabled(false) - disables panel's touch responsiveness (drag and click), you can still control the panel programatically
    • getPanelState - is now the only method to get the current panel state
    • setPanelState - is now the only method to modify the panel state from code
  • 2.0.2 - Allow wrap_content for sliding view height attribute. Bug fixes.
  • 2.0.1 - Bug fixes.
  • 2.0.0 - Cleaned up various public method calls. Added animated showPanel/hidePanel methods.
  • 1.0.1 - Initial Release

Licence

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this work except in compliance with the License. You may obtain a copy of the License in the LICENSE file, or at:

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Comments
  • Add compiled gradle AAR to Maven repository

    Add compiled gradle AAR to Maven repository

    It would be nice, according with the new Android dev headlines.

    It was perfect if I could use somethink like this on my build.gradle:

    compile 'com.sothree.slidinguppanel:slidinguppanel:+'
    

    Thank You for the awesome library

    opened by fabriciomassula 44
  • Sliding panel resize problem

    Sliding panel resize problem

    screenshot_2014-07-29-16-27-17 1

    screenshot_2014-07-24-15-51-01

    When i press select on map i collapse whole sliding layout to 0. But sometimes this happens.

    Moreover, in soft keyboard input mode , the panel doesnt resize properly and i dont want to use adjustPan. I tried using all the combinations but the problem remains the same

    opened by gargas 19
  • Pulling panel up partially feature

    Pulling panel up partially feature

    I would love a feature where you can define the distance the panel can be pulled up (not only full screen). For example the panel is only shown 50% of the screen, or (if possible) to only show the height of the content of the panel.

    Thanks.

    FEATURE REQUEST 
    opened by Skarbo 19
  • Vertically Scrollable SlidingUpPanel (like ScrollView)  - feature request/how to

    Vertically Scrollable SlidingUpPanel (like ScrollView) - feature request/how to

    Hi,

    Firstly, thanks to all contributors for an awesome library, very much appreciated.

    I have the need to make the content in the Sliding Up Panel vertically scrollable, that is, when there is too much content to fit in the maximum height of the panel, it is scrollable, just like ScrollView. I have experimented with ScrollView, but am having no joy, I presume that it is not that easy.

    Is anyone able to advise, or provide guidance, or an example as to how to implement this feature? It is becoming more and more common e.g. Etsy app...

    many thanks

    FEATURE REQUEST 
    opened by electricsunny 17
  • IndexOutOfBoundsException: Invalid index 0, size is 0

    IndexOutOfBoundsException: Invalid index 0, size is 0

    I'm getting this error, both on Android 4 and 5

    Fatal Exception: java.lang.IndexOutOfBoundsException: Invalid index 0, size is 0 at java.util.ArrayList.throwIndexOutOfBoundsException(ArrayList.java:251) at java.util.ArrayList.get(ArrayList.java:304) at android.support.v4.view.ViewPager.performDrag(SourceFile:2162) at android.support.v4.view.ViewPager.onTouchEvent(SourceFile:2081) at android.view.View.dispatchTouchEvent(View.java:7348) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2235) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1932) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at com.sothree.slidinguppanel.SlidingUpPanelLayout.dispatchTouchEvent(SourceFile:962) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at android.view.ViewGroup.dispatchTransformedTouchEvent(ViewGroup.java:2241) at android.view.ViewGroup.dispatchTouchEvent(ViewGroup.java:1946) at com.android.internal.policy.impl.PhoneWindow$DecorView.superDispatchTouchEvent(PhoneWindow.java:1974) at com.android.internal.policy.impl.PhoneWindow.superDispatchTouchEvent(PhoneWindow.java:1426) at android.app.Activity.dispatchTouchEvent(Activity.java:2446) at android.support.v7.internal.view.WindowCallbackWrapper.dispatchTouchEvent(SourceFile:60) at android.support.v7.internal.view.WindowCallbackWrapper.dispatchTouchEvent(SourceFile:60) at com.android.internal.policy.impl.PhoneWindow$DecorView.dispatchTouchEvent(PhoneWindow.java:1922) at android.view.View.dispatchPointerEvent(View.java:7528) at android.view.ViewRootImpl.deliverPointerEvent(ViewRootImpl.java:3626) at android.view.ViewRootImpl.deliverInputEvent(ViewRootImpl.java:3554) at android.view.ViewRootImpl.doProcessInputEvents(ViewRootImpl.java:4818) at android.view.ViewRootImpl.enqueueInputEvent(ViewRootImpl.java:4778) at android.view.ViewRootImpl$WindowInputEventReceiver.onInputEvent(ViewRootImpl.java:4930) at android.view.InputEventReceiver.dispatchInputEvent(InputEventReceiver.java:179) at android.os.MessageQueue.nativePollOnce(MessageQueue.java) at android.os.MessageQueue.next(MessageQueue.java:125) at android.os.Looper.loop(Looper.java:140) at android.app.ActivityThread.main(ActivityThread.java:5299) at java.lang.reflect.Method.invokeNative(Method.java) at java.lang.reflect.Method.invoke(Method.java:511) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:833) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:600) at dalvik.system.NativeStart.main(NativeStart.java)

    opened by githubdoramon 16
  • Sliding up panel crashes with Navigation Drawer

    Sliding up panel crashes with Navigation Drawer

    Hi,

    First of all, Thanks for providing this awesome library. I wanna use this library with the new Navigation Drawer. I tried implementing but the app crashes.

    I hope someone can help me solve this problem.

    BUG 
    opened by AkshayChordiya 16
  • TouchEvents in Expanded View are let through to the underlying Main Layout.

    TouchEvents in Expanded View are let through to the underlying Main Layout.

    edit: see the actual problem a few posts below: https://github.com/umano/AndroidSlidingUpPanel/issues/205#issuecomment-46836145

    Hi,

    I'm using the library https://github.com/chrisbanes/ActionBar-PullToRefresh and the pull to refresh event is triggered when dragging down on the non-dragview of the expanded view. Is there a way of intercepting and preventing that touchevent?

    opened by JohNan 15
  • Action bar Overlays the layout

    Action bar Overlays the layout

    the action bar overlays my SlidingUpPanel... if i comment this: getWindow().requestFeature(Window.FEATURE_ACTION_BAR_OVERLAY); then the layout looks ok, but sliding jumps like crazy...

    i attached screeny 2013-06-12 23 20 11

    opened by Shahar2k5 15
  • Question: How can I build use a gradle

    Question: How can I build use a gradle

    Hi. I'm moltak. When I try to build a source use gradle, it was occurred 'No such property: nexusUsername for class: org.gradle.api.publication.maven.internal.ant.DefaultGroovyMavenDeployer' errors. How can I fix it?

    opened by moltak 14
  • EditText or Button behind Sliding panel Up receives the onClick

    EditText or Button behind Sliding panel Up receives the onClick

    If you set your dragView and behind the Sliding Panel Up it is a Form layout (with buttons and edittexts) they can be clicked. For example:

    slidingUpLayout.setDragView(mediaPlayer);

    login.setOnClickListener() { //... Toast.makeText(getContext, "LoginButton Clicked", Toast.LENGTH_SHORT).show; }

    BUG 
    opened by nicolasjafelle 14
  • AndroidSlidingUpPanel overlapping brother view

    AndroidSlidingUpPanel overlapping brother view

    I'm having a problem using AndroidSlidingUpPanel

    I'm using a ViewPager of images in my Activity. I need whole screen visibility for images, so I need to avoid ViewPager as main content child of SlidingUpPanelLayout. It should be a brother of it inside a same FrameLayout or RelativeLayout.

    I'm having an issue with this, because I can't detect touch events on the ViewPager. SlidingUpPanel is getting all events. Is there any way to avoid this?:

    Here a little schema of the layout:

     <FrameLayout
          android:id="@+id/main_content"
          android:layout_width="match_parent"
          android:layout_height="match_parent">
    
          <ui.widget.ZoomedHorizontalViewPager
              android:id="@+id/details_pager"
              android:layout_width="match_parent"
              android:layout_height="match_parent"/>
    
          <ui.widget.SlidingUpPanelLayout
              android:id="@+id/sliding_layout"
              android:background="@null"
              android:focusable="false"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
              android:layout_marginTop="?android:attr/actionBarSize"
              android:gravity="bottom"
              app:collapsedHeight="?android:attr/actionBarSize"
              app:dragView="@+id/details_more_info">
    
              <FrameLayout
                  android:layout_width="match_parent"
                  android:layout_height="0dp"/>
    
              <LinearLayout
                  android:id="@+id/dcollapse_and_draggable_view"
                  ...
                android:orientation="vertical">
    
        </ui.widget.SlidingUpPanelLayout>
    </FrameLayout>
    
    opened by cesards 12
  • never recalculate the layout height after replace it programmatically

    never recalculate the layout height after replace it programmatically

    I add the second child in sliding panel with:

    <include layout="@layout/search_location" />
    

    But at a moment I need to replace this layout with another. Using next code:

    FrameLayout mainLayout = findViewById(R.id.slide);
     View layout = View.inflate(this,R.layout.menu_settings,null);
     mainLayout.removeAllViews();
     mainLayout.addView(layout);
    

    The new layout is shortest as the first one.

    The problem is that when show the slide panel it will jump to the same point as for old layout. if hide it and reveal again he is displayed ok now.

    Here is slider with first layout:

    http://ghiduldrumetului.ro/1.jpg

    And here with replaced one:

    http://ghiduldrumetului.ro/2.jpg

    What need to do that slidepanel to calculate well the height after replacement of second child layout?

    opened by boomrules 0
  • Fix typos and inconsistencies in readme

    Fix typos and inconsistencies in readme

    • Fixed any typos and grammar mistakes I came across
    • Reworded some sentences for clarity
    • Changelog was not consistent with tense (used both past and present). I opted to make it all present, but it can be changed to use past.
    opened by SmolParascythe 0
  • SlidingUpPanel with BottomNavigation Help ....

    SlidingUpPanel with BottomNavigation Help ....

    Hello. Now i found bug SlidingUpPanel with BottomNavigation.

    The problem is fragment layout don't show when app started. Change the tab and it will be visible So I have to do this every time you launch the app.

    <!-- Notice the attribute layout above -->
    <com.sothree.slidinguppanel.SlidingUpPanelLayout
        android:id="@+id/main_frame"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/nav_view"
        android:background="@color/teal_200"
        android:gravity="bottom"
        app:umanoPanelHeight="70dp"
        app:umanoShadowHeight="5dp"
        tools:context=".MainActivity">
    
        <!-- Fragment container here -->
        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/back_layout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#42A5F5">
    
            <fragment
                android:id="@+id/nav_host_fragment_activity_main"
                android:name="androidx.navigation.fragment.NavHostFragment"
                android:layout_width="0dp"
                android:layout_height="0dp"
                app:defaultNavHost="true"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent"
                app:layout_constraintTop_toTopOf="parent"
                app:navGraph="@navigation/mobile_navigation" />
    
        </androidx.constraintlayout.widget.ConstraintLayout>
    
        <!-- Mini Player here -->
        <androidx.constraintlayout.widget.ConstraintLayout
            android:id="@+id/slide_layout"
            android:visibility="gone"
            android:background="@color/white"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
    
            <FrameLayout
                android:id="@+id/frame_layout"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
    
        </androidx.constraintlayout.widget.ConstraintLayout>
    
    
    </com.sothree.slidinguppanel.SlidingUpPanelLayout>
    
    <com.google.android.material.bottomnavigation.BottomNavigationView
        android:id="@+id/nav_view"
        android:layout_width="match_parent"
        android:layout_height="?actionBarSize"
        android:layout_alignParentBottom="true"
        android:background="?android:attr/windowBackground"
        app:menu="@menu/bottom_nav_menu" />
    

    Library Guide need root element. But my code root element is RelativeLayout because of Bottom Nav.

    If the guide is mandatory, is there a solution?

    opened by cheonjoosung 0
  • Change position of a specific view in SlidingUpPanel Layout.

    Change position of a specific view in SlidingUpPanel Layout.

    Actually I can't get to achieve one thing.

    Snap1 Snap2

    As you can see in the images in my Android App, I've a SlidingUpPanel Layout with ImageView and Button. My main layout has a list view containing some items in it. Now what I want is that when the SlidingUpPanel Layout is collapsed,I want the ImageView to appear right after the button(on the right side) and when I expand the SlidingUpPanel, I want the ImageView to go back to its position.

    How to achieve this. Any help will be highly appreciated. Thank You

    opened by asrarsunge 1
Releases(3.3.0)
Owner
Umano: News Read To You
Bringing content to life with human narration.
Umano: News Read To You
Path like scrollbar panel with clock.

ScrollBarPanelWithClock Path 2.0 like scrollbar with clock widget for Android. This is an open source library which uses the scroll bar library. I hav

learnNcode 170 Feb 20, 2021
Draggable views with rotation and skew/scale effects

DraggableView Draggable views with rotation and skew/scale effects. Usage Implement DragController.IDragViewGroup Create instance of DragController Ov

Eugene Levenetc 562 Nov 11, 2022
Custom & highly configurable seek slider with sliding intervals, disabled state and every possible setting to tackle!

LabeledSeekSlider Custom & highly configurable seek slider with sliding intervals, disabled state and every possible setting to tackle! Minimum target

Edgar Žigis 78 Sep 27, 2022
Sliding cards with pretty gallery effects.

SlidingCard Sliding cards with pretty gallery effects. Download Include the following dependency in your build.gradle file. Gradle: repositories {

mxn 681 Sep 7, 2022
A simple library to add Emoji support to your Android Application

Emoji A library to add Emoji support to your Android app. Emojis can be picked in a PopupWindow. In order to edit and display text with Emojis this li

Niklas Baudy 1.4k Jan 4, 2023
TourGuide is an Android library that aims to provide an easy way to add pointers with animations over a desired Android View

TourGuide TourGuide is an Android library. It lets you add pointer, overlay and tooltip easily, guiding users on how to use your app. Refer to the exa

Tan Jun Rong 2.6k Jan 5, 2023
This library offers a simple method to add a small badge icon to your ActionBar-MenuItem

Android-ActionItemBadge ActionItemBadge is a library which offers a simple and easy to use method to add a badge to your action item! Screenshots Incl

Mike Penz 1.3k Jan 1, 2023
Bubbles for Android is an Android library to provide chat heads capabilities on your apps. With a fast way to integrate with your development.

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

Txus Ballesteros 1.5k Jan 2, 2023
Sentinel is a simple one screen UI which provides a standardised entry point for tools used in development and QA alongside device, application and permissions data.

Sentinel Sentinel is a simple one screen UI that provides standardised entry point for tools used in development and QA alongside device, application

Infinum 29 Dec 12, 2022
Add some depth to your Android scrolling.

Parallax Pager Add some depth to your Android scrolling using the parallax effect! Installation Step 1. Add the JitPack repository to your build file

Prolific Interactive 782 Dec 29, 2022
A simple library to let you sign (or draw lines) smoothly with your finger into a view and save it.

FingerSignView Introduction FingerSignView is a simple library that lets you finger, or draw lines, smoothly with your finger into a View and save it

Agnaldo Pereira 25 Nov 20, 2022
Custom android music player view.

InteractivePlayerView Custom android music player view. Screen Check it on youtube Usage(XML) Define it in your xml file. <co.mobiwise.library.Intera

Mert Şimşek 744 Dec 25, 2022
An elegant way to show your menu or messages.

Android View Hover In my opinion, jumping to a new activity to show your menu is a kind of wasting time and life. So, I think, we need a hover view, t

代码家 3.2k Jan 2, 2023
Janishar Ali 2.1k Jan 1, 2023
[] A simple way to "badge" any given Android view at runtime without having to cater for it in layout

Android ViewBadger A simple way to "badge" any given Android view at runtime without having to cater for it in layout. Note: If your aim is to replica

Jeff Gilfelt 3k Nov 28, 2022
Wizard Pager is a library that provides an example implementation of a Wizard UI on Android, it's based of Roman Nurik's wizard pager (https://github.com/romannurik/android-wizardpager)

Wizard Pager Wizard Pager is a library that provides an example implementation of a Wizard UI on Android, it's based of Roman Nurik's wizard pager (ht

Julián Suárez 520 Nov 11, 2022
Android view that allows the user to create drawings. Customize settings like color, width or tools. Undo or redo actions. Zoom into DrawView and add a background.

DrawView Android view that allows the user to create drawings. Draw anything you like in your Android device from simple view. Customize draw settings

Oscar Gilberto Medina Cruz 839 Dec 28, 2022
[] Android library that provides a file explorer to let users select files on external storage.

aFileChooser - Android File Chooser aFileChooser is an Android Library Project that simplifies the process of presenting a file chooser on Android 2.1

Paul Burke 1.8k Jan 5, 2023
Wizard Pager is a library that provides an example implementation of a Wizard UI on Android

Wizard Pager is a library that provides an example implementation of a Wizard UI on Android, it's based of Roman Nurik's wizard pager.

Julián Suárez 520 Nov 11, 2022