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
Android library used to create an awesome Android UI based on a draggable element similar to the last YouTube New graphic component.

Please switch to DragView, for the best support, thank you DraggablePanel Download allprojects { repositories { ... maven { url 'https://jitp

Hoàng Anh Tuấn 103 Oct 12, 2022
You don’t want your apps look and feel boring, do you? Add some bubbles!

#BubbleAnimationLayout Say hello to Bubble Animation Layout for Android by Cleveroad You don’t want your apps look and feel boring, do you? Add some b

Cleveroad 576 Nov 23, 2022
Material Design Search View Layout, now implemented in Google Maps, Dialer, etc

THIS PROJECT IS DEPRECATED Component is not maintained anymore. Implementation of Lollipop+ Dialer and Google Maps. DEMO Add in View Add to your layou

Sahil Dave 1.1k Dec 22, 2022
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
VoronoiView is a view (ViewGroup) that allows you to add and display views inside Voronoi diagram regions.

Vorolay VoronoiView is a view (ViewGroup) that allows you to add and display views inside Voronoi diagram regions. [Voronoi diagram] (https://en.wikip

Daniil Jurjev 918 Dec 4, 2022
ConstraintLayout is an Android layout component which allows you to position and size widgets in a flexible way

ConstraintLayout is a layout manager for Android which allows you to position and size widgets in a flexible way. It's available for both the Android view system and Jetpack Compose.

Android Jetpack 970 Jan 6, 2023
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 Dec 6, 2022
Easily add slide to dismiss functionality to an Activity

Slidr Easily add slide-to-dismiss functionality to your Activity by calling Slidr.attach(this) in your onCreate(..) method. Usage An example usage: pu

Drew Heavner 2.7k Dec 29, 2022
ViewStateLayout - Easy way to manage common state templates like loading, empty, error etc.!

ViewStateLayout Easy way to manage common state templates like loading, empty, error etc.! How to Step 1. Add the JitPack repository to your build fil

Kamrul Hasan 7 Dec 15, 2022
An Android library that help you to build app with swipe back gesture.

SwipeBackLayout An Android library that help you to build app with swipe back gesture. Demo Apk GooglePlay Requirement The latest android-support-v4.j

ike_w0ng 6.1k Dec 29, 2022
It's an Android library that allows you to use Layout as RadioButton or CheckBox.

Android - CompoundLayout It's an Android library that allows you to use Layout as RadioButton or CheckBox. The librarie is Android 14+ compatible. Gra

null 483 Nov 25, 2022
An Android library that help you to build app with swipe back gesture.

SwipeBackLayout An Android library that help you to build app with swipe back gesture. Demo Apk GooglePlay Requirement The latest android-support-v4.j

ike_w0ng 6.1k Jan 3, 2023
A library that easily allows you to mask layouts/viewgroups

Maskable Layout Overview ======================= The Maskable Layout is a simple framelayout that allows you to easily mask views and viewgroups. You

Christophe Smet 654 Dec 2, 2022
This assignment gives you basically a post list and its detail with comments.🚀

Android Assignment ?? Description This assignment gives you basically a post list and its detail with comments. ?? Features Users can see random post

Okan AYDIN 31 Dec 20, 2022
GoolgePlusLayout is a custom layout that plays animation on the children views while scrolling as the layout in the Google Plus (android) main page

Google Plus Layout Google Plus Layout is a custom layout that support playing animation on child view(s) in a serialize manner like the the main

Ahmed Nammari 224 Nov 25, 2022
Smooth version of Google Support Design AppBarLayout

smooth-app-bar-layout [Deprecated] ================ [DEPRECATED] The issue that is addressed in this library is fixed from support design 26.0.0 or ab

Henry Tao 1.8k Dec 13, 2022
A very simple arc layout library for Android

ArcLayout A very simple arc layout library for Android. Try out the sample application on the Play Store. Usage (For a working implementation of this

ogaclejapan 1.4k Dec 26, 2022
Simple android library to present an animated ferris wheel

Ferris Wheel View Overview An Android Library used to implement an animated Ferris Wheel in android. API SDK 15+ Written in Kotlin Supports landscape

Igor Lashkov 318 Dec 7, 2022