Popularity
1.3
Stable
Activity
0.0
Stable
21
2
5
Programming language: Java
Latest version: v2.3
GenericDialog alternatives and similar packages
Based on the "Dialog Widget" category.
Alternatively, view GenericDialog 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 -
SimpleDialogFragment
An Android library that provides a simple implementation of a DialogFragment -
WhatIsNewDialog
An Android library for displaying a dialog where it presents new features in the app. -
Bottom Flux Dialog
🌠 Simple way make your beautiful dialog (Bottom Sheet Dialog) -
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 Firebase alternative introduces iOS support
Appwrite is an open source backend server that helps you build native iOS applications much faster with realtime APIs for authentication, databases, files storage, cloud functions and much more!
Promo
appwrite.io
* 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 GenericDialog or a related project?
README
GenericDialog
A new AlertDialog for Android is here...!!
Getting Started
Installation
Add this into your root build.gradle file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency to your module build.gradle:
implementation 'com.github.jaidevnaik5886:GenericDialog:2.2'
implementation 'com.github.jaidevnaik5886:GenericDialog:2.3' //For AndroidX Support
Usage
new GenericDialog.Builder(this)
.setDialogFont(R.font.nunito_bold)
.setDialogTheme(R.style.GenericDialogTheme)
.setIcon(android.R.drawable.checkbox_on_background)
.setTitle("Success !").setTitleAppearance(R.color.colorPrimaryDark, 16)
.setMessage("Data Collected Successfully")
.addNewButton(R.style.CustomButton, new GenericDialogOnClickListener() {
@Override
public void onClick(View view) {
Toast.makeText(MainActivity.this, "OK later Clicked", Toast.LENGTH_SHORT).show();
}
})
.setButtonOrientation(LinearLayout.HORIZONTAL)
.setCancelable(true)
.generate();