All Projects → imjeevandeshmukh → FancyBottomSheetDialog

imjeevandeshmukh / FancyBottomSheetDialog

Licence: MIT license
This is android library implementing bottom sheet like fancy dialog

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to FancyBottomSheetDialog

Whatsapp Android App
This is sample code for layout for chatting app like Whatsapp.
Stars: ✭ 32 (+52.38%)
Mutual labels:  android-development, android-ui
Einsen
🎯 Einsen is a prioritization app that uses Eisenhower matrix technique as workflow to prioritize a list of tasks & built to Demonstrate use of Jetpack Compose with Modern Android Architecture Components & MVVM Architecture.
Stars: ✭ 821 (+3809.52%)
Mutual labels:  android-development, android-ui
Aboutlibraries
AboutLibraries automatically detects all dependencies of a project and collects their information including the license. Optionally visualising it via the provided ui components.
Stars: ✭ 2,777 (+13123.81%)
Mutual labels:  android-development, android-ui
Modern Android Development
Modern Android Development tools & key points
Stars: ✭ 219 (+942.86%)
Mutual labels:  android-development, android-ui
floating-layout-android
Floating Layout library for Android
Stars: ✭ 55 (+161.9%)
Mutual labels:  android-development, android-ui
Customfloatingactionbutton
This view is for replacement of standard Floating Action Button from Google Support Library. It is easy to use, customizable and you can also add text to button
Stars: ✭ 222 (+957.14%)
Mutual labels:  android-development, android-ui
QuestionnaireView
A simple view to be able to display question and various field (Radio, EditText, checkbox ) for answers
Stars: ✭ 34 (+61.9%)
Mutual labels:  android-development, android-ui
Glidetoast
GlideToast is a android library to implement flying Toast Animation
Stars: ✭ 162 (+671.43%)
Mutual labels:  android-development, android-ui
QuadTreeAndroid
Library that helps to implement the QuadTree in android, by using splitting images
Stars: ✭ 30 (+42.86%)
Mutual labels:  android-development, android-ui
github-commit-browser
A blog companion sample project that demonstrates saving UI state after process death on Android utilizing the community established 3rd party libraries
Stars: ✭ 55 (+161.9%)
Mutual labels:  android-development, android-ui
Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (+942.86%)
Mutual labels:  android-development, android-ui
Material-Backdrop-Android
Material Backdrop
Stars: ✭ 106 (+404.76%)
Mutual labels:  android-development, android-ui
Advancedrecycleview
♻ RecycleView with multiple view types, inner horizontal RecycleView and layout animation
Stars: ✭ 172 (+719.05%)
Mutual labels:  android-development, android-ui
Awesome Android Complete Reference
Awesome Android references for everything like best practices, performance optimization, etc.
Stars: ✭ 2,701 (+12761.9%)
Mutual labels:  android-development, android-ui
Awesomedialog
A Beautiful Dialog Library for Kotlin Android
Stars: ✭ 163 (+676.19%)
Mutual labels:  android-development, android-ui
awesome-android-libraries
😎 A curated list of awesome Android libraries
Stars: ✭ 135 (+542.86%)
Mutual labels:  android-development, android-ui
Notzz App
📝 A Simple Note-Taking App built to demonstrate the use of Modern Android development tools - (Kotlin, Coroutines, State Flow, Hilt-Dependency Injection, Jetpack DataStore, Architecture Components, MVVM, Room, Material Design Components).
Stars: ✭ 158 (+652.38%)
Mutual labels:  android-development, android-ui
Customrefreshview
一个支持网络错误重试,无数据页(可自定义),无网络界面(可自定义)的上拉加载更多,下拉刷新控件
Stars: ✭ 160 (+661.9%)
Mutual labels:  android-development, android-ui
VideoPreLoading
Demo for video PreLoading/ PreCaching using ExoPlayer 2.13.3 in Android.
Stars: ✭ 61 (+190.48%)
Mutual labels:  android-development, android-ui
GitReposCompose
GitReposCompose is an Android application 📱 for showcasing Jetpack Compose for building declarative UI in Android. This demo app uses Github public API for fetching public repositories.
Stars: ✭ 32 (+52.38%)
Mutual labels:  android-development, android-ui

FancyBottomSheetDialog

An Android library to build bottom sheet dialog.


API

Releases:

Current release: 1.0

You can see all the library releases here.


Screenshots

    

Download the sample apk here.

Usage:

Adding the depencency

Add this to your root build.gradle file:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}

Now add the dependency to your app build.gradle file:

 implementation 'com.github.imjeevandeshmukh:FancyBottomSheetDialog:1.0'
	

Creating the dialog with Java

Here is a complete snippet of it usage:

new FancyBottomSheetDialog.Builder(this)
                .setTitle("Alert bottom sheet dialog")
                .setMessage("This is where we show the information.This is a message.This is where we show message explain or showing the information.")
                .setBackgroundColor(Color.parseColor("#3F51B5")) //don't use R.color.somecolor
                .setIcon(R.drawable.ic_pan_tool_black_24dp,true)
                .isCancellable(false)
                .OnNegativeClicked(new FancyBottomSheetDialog.FancyBottomSheetDialogListener() {
                    @Override
                    public void OnClick() {

                    }
                })
                .OnPositiveClicked(new FancyBottomSheetDialog.FancyBottomSheetDialogListener() {
                    @Override
                    public void OnClick() {

                    }
                })
                .setNegativeBtnText("Cancel")
                .setPositiveBtnText("Ok")
                .setPositiveBtnBackground(Color.parseColor("#3F51B5"))//don't use R.color.somecolor
                .setNegativeBtnBackground(Color.WHITE)//don't use R.color.somecolor
                .build();

License

MIT License

Copyright (c) 2018 imjeevandeshmukh

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
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].