All Projects → michaelbel → Bottomsheet

michaelbel / Bottomsheet

Licence: apache-2.0
BottomSheet dialog library for Android

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Bottomsheet

Ibackdrop
A library to simply use Backdrop in your project (make it easy). Read more ->
Stars: ✭ 137 (-37.44%)
Mutual labels:  android-app, material-design, android-application, android-development, material-ui, android-ui, material-components
Mediapicker
Easy customizable picker for all your needs in Android application
Stars: ✭ 105 (-52.05%)
Mutual labels:  android-app, material-design, android-application, android-development, material-ui, android-ui, material-components
Todayx
🌈Flutter App:🎊「今日份的X」(每天推荐一个:图片、诗歌、名言、音乐、乐评、高等数学、两种配色、化学方程式、Github Repo、知乎问题、文章)
Stars: ✭ 128 (-41.55%)
Mutual labels:  android-app, demo-app, demo, material-design, android-application, material-ui
media-picker
Easy customizable picker for all your needs in Android application
Stars: ✭ 167 (-23.74%)
Mutual labels:  material-ui, android-development, android-application, material-components, android-ui, android-app
Cameraxdemo
A sample camera app with CameraX API from Android Jetpack
Stars: ✭ 112 (-48.86%)
Mutual labels:  android-app, demo-app, demo, android-application, android-development, android-ui
Datingapp
Dating UI kit is used for online meet up with girls and boys . The screen contains more than 30 icons and most of all required elements required to design an application like this. The XML and JAVA files contains comments at each and every point for easy understanding. Everything was made with a detail oriented style and followed by today's web trends. Clean coded & Layers are well-organized, carefully named, and grouped.
Stars: ✭ 97 (-55.71%)
Mutual labels:  android-app, material-design, android-application, android-development, material-ui, android-ui
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin 📱🎨🦄
Stars: ✭ 783 (+257.53%)
Mutual labels:  material-design, android-development, material-ui, android-ui, material-components
Music Player Go
🎶🎼 Very slim music player 👨‍🎤 100% made in Italy 🍕🌳🌞🍝🌄
Stars: ✭ 654 (+198.63%)
Mutual labels:  android-app, material-design, android-application, android-development, android-ui
Superbottomsheet
Android native BottomSheet on steroids 💪
Stars: ✭ 548 (+150.23%)
Mutual labels:  android-app, android-application, android-development, android-ui, bottomsheet
Alerter
An Android Alerting Library
Stars: ✭ 5,213 (+2280.37%)
Mutual labels:  android-app, material-design, android-development, material-ui, android-ui
Materialdrawer
The flexible, easy to use, all in one drawer library for your Android project. Now brand new with material 2 design.
Stars: ✭ 11,498 (+5150.23%)
Mutual labels:  material-design, android-development, material-ui, android-ui, material-components
Shotang App
The New Home Screen is designed in a modular way with the core focus on product discovery. Search, Deals, Products everything has been brought upfront. The hamburger menu has been replaced with a bottom navigation bar for easy reachability. On the tech side too, this design allows us to run new deals and other experiments in an agile manner which wasn't possible in the previous version.
Stars: ✭ 132 (-39.73%)
Mutual labels:  android-app, material-design, android-application, android-ui
Fancyshowcaseview
An easy-to-use customisable show case view with circular reveal animation.
Stars: ✭ 1,662 (+658.9%)
Mutual labels:  material-design, android-development, material-ui, android-ui
Motiontoast
🌈 A Beautiful Motion Toast Library for Kotlin Android
Stars: ✭ 767 (+250.23%)
Mutual labels:  android-app, material-design, android-development, android-ui
Morphing Material Dialogs
Material dialog ❤️ morphing animation. An android kotlin UI library for building beautiful animations for converting a floating action button into a material dialog.
Stars: ✭ 806 (+268.04%)
Mutual labels:  android-app, material-design, android-application, android-ui
Android Customtoast
Easy to use Custom Toast Library for Android
Stars: ✭ 24 (-89.04%)
Mutual labels:  android-app, material-design, android-development, android-ui
Androidkex
Extensions for Kotlin. Use the power of Kotlin to make your code smaller and beautiful.
Stars: ✭ 35 (-84.02%)
Mutual labels:  android-app, android-application, android-development, android-ui
Phonenumberverificationui Android
Check out the new style for mobile number verification 😉😉😊😊
Stars: ✭ 52 (-76.26%)
Mutual labels:  android-app, android-application, android-development, android-ui
Edxposedmanager
Companion Android application for EdXposed
Stars: ✭ 1,172 (+435.16%)
Mutual labels:  android-app, android-application, android-development, android-ui
Zoomrecylerlayout
🎢 Zoom Recycler Layout Manager For Android Kotlin
Stars: ✭ 618 (+182.19%)
Mutual labels:  android-app, android-application, android-development, android-ui

BottomSheet

Bintray Platform MinSdk IDE License AndroidArsenal GooglePlay Methodscount Paypal

BottomSheet dialogs library for Android with material design concept. Bottom sheets slide up from the bottom of the screen to reveal more content.

Demo

Download

dependencies {
    implementation 'org.michaelbel:bottomsheet:1.2.3'
}

Usage

BottomSheet.Builder builder = new BottomSheet.Builder(context);
builder
   .setTitle(CharSequence title)
   .setItems(CharSequence[] items, Drawable[] icons, DialogInterface.OnClickListener listener)
   .setMenu(@MenuRes int menuResId, DialogInterface.OnClickListener listener)
   .setView(@LayoutRes int layoutResId)
   .setContentType(@BottomSheet.Type int type)
   .setDarkTheme(boolean darkTheme)
   .setFullWidth(boolean fullWidth)
   .setCellHeight(int cellHeightDp)
   .setDividers(boolean dividers)
   .setWindowDimming(@Range(from = 0, to = 255) int windowDimming)
   .setTitleMultiline(boolean multiline)
   .setFabBehavior(FloatingActionButton button)
   .setFabBehavior(FloatingActionButton button, @BottomSheet.FabBehavior int fabBehavior)
   .setBackgroundColor(@ColorInt int color)
   .setBackgroundColorRes(@ColorRes int color)
   .setTitleTextColor(@ColorInt int color)
   .setTitleTextColorRes(@ColorRes int color)
   .setItemTextColor(@ColorInt int color)
   .setItemTextColorRes(@ColorRes int color)
   .setIconColor(@ColorInt int color)
   .setIconColorRes(@ColorRes int color)
   .setItemSelector(int selector);
   .setOnShowListener(new DialogInterface.OnShowListener() {
       @Override
       public void onShow(DialogInterface dialog) {
       }
   });
   .setOnDismissListener(new DialogInterface.OnDismissListener() {
       @Override
       public void onDismiss(DialogInterface dialog) {
       }
   });
   .setCallback(new BottomSheetCallback() {
       @Override
       public void onShown() {
       }
       
       @Override
       public void onDismissed() {
       }
   })
   .show();

Wiki

For all information check BottomSheet Wiki.

Deprecated

BottomSheet is deprecated. No more development will be taking place. Existing version will continue to function. Please, use BottomSheetDialogFragment from Google instead. Thanks!

License

Copyright 2016 Michael Bely

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License 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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].