Bottom Flux Dialog alternatives and similar packages
Based on the "Dialog Widget" category.
Alternatively, view Bottom Flux Dialog alternatives based on common mentions on social networks and blogs.
-
android-styled-dialogs
Backport of Material dialogs with easy-to-use API based on DialogFragment -
BlurDialogFragment
Library project to display DialogFragment with a blur effect. -
spots-dialog
Android AlertDialog with moving dots progress indicator -
LicensesDialog
LicensesDialog is an open source library to display licenses of third-party libraries in an Android app. -
Android-RateThisApp
Android library to show "Rate this app" dialog -
L-Dialogs
A small library replicating the new dialogs in android L. -
FancyGifDialog-Android
Make your native android Dialog Fancy and Gify. A library that takes the standard Android Dialog to the next level with a variety of styling options and Gif's. Style your dialog from code. -
Aesthetic Dialogs for Android 📱
📱 An Android Library for 💫fluid, 😍beautiful, 🎨custom Dialogs. -
FileListerDialog
A simple file/ directory picker dialog for android -
LongPressPopup
Make a Popup appear long pressing on a view and handle drag-release events on its elements -
PostOffice
This is a library for easily constructing Holo and Material Design Dialogs. -
AndroidSliderPreference
Android library that allows applications to add dialog-based slider widgets to their settings -
AwesomeDialog
No description, website, or topics provided. -
SimpleDialogFragment
An Android library that provides a simple implementation of a DialogFragment -
GenericDialog
A new AlertDialog for Android is here...!! -
WhatIsNewDialog
An Android library for displaying a dialog where it presents new features in the app. -
MonthYearPickerDialog
Dialog for Android that allows pick month and year without exact day which is impossible with standard DatePickerDialog. It has customizable UI and different modes of selecting.
Appwrite - The open-source backend cloud platform
* 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 Bottom Flux Dialog or a related project?
README
Bottom Flux Dialog
BottomFluxDialog, Simple way make your beautiful dialog
ScreenShot
Setup
The simplest way to use BottomFluxDialog is to add the library as aar dependency to your build.
Maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.haerulmuttaqin</groupId>
<artifactId>BottomFluxDialog</artifactId>
<version>0.1.1</version>
</dependency>
Gradle
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.haerulmuttaqin:BottomFluxDialog:0.1.1'
}
Usage
display dialogs easily
Info dialog:
BottomFluxDialog.infoDialog(MainActivity.this)
.setTextTitle("Info Title")
.setTextMessage("This is a info message")
.setImageDialog(R.drawable.ic_dialog_info)
.setInfoButtonText("CLOSE")
.show();
Alert dialog:
BottomFluxDialog.alertDialog(MainActivity.this)
.setTextTitle("Alert Title")
.setTextMessage("This is a alert message")
.setImageDialog(R.drawable.ic_dialog_alert)
.setAlertButtonText("OK")
.setAlertListener(new BottomFluxDialog.OnAlertListener() {
@Override
public void onClick() {
Toast.makeText(MainActivity.this, "Button Clicked!", Toast.LENGTH_SHORT).show();
}
})
.show();
Confirm dialog:
BottomFluxDialog.confirmDialog(MainActivity.this)
.setTextTitle("Confirm Title")
.setTextMessage("This is a confirm message")
.setImageDialog(R.drawable.ic_dialog_confirm)
.setLeftButtonText("CANCEL")
.setRightButtonText("OK")
.setConfirmListener(new BottomFluxDialog.OnConfirmListener() {
@Override
public void onLeftClick() {
Toast.makeText(MainActivity.this, "Left Button Clicked!", Toast.LENGTH_SHORT).show();
}
@Override
public void onRightClick() {
Toast.makeText(MainActivity.this, "Right Button Clicked!", Toast.LENGTH_SHORT).show();
}
})
.show();
Input dialog:
BottomFluxDialog.inputDialog(MainActivity.this)
.setTextTitle("Input Title")
.setTextMessage("This is a input message")
.setRightButtonText("SUBMIT")
.setInputListener(new BottomFluxDialog.OnInputListener() {
@Override
public void onSubmitInput(String text) {
Toast.makeText(MainActivity.this, "Input : " + text, Toast.LENGTH_SHORT).show();
}
@Override
public void onCancelInput() {
Toast.makeText(MainActivity.this, "Button Cancel Clicked!", Toast.LENGTH_SHORT).show();
}
})
.show();
License
MIT License
Copyright (c) 2020 Haerul Muttaqin
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 all licence references and agreements mentioned in the Bottom Flux Dialog README section above
are relevant to that project's source code only.