Popularity
1.3
Stable
Activity
0.0
Stable
22
3
4
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.
-
LicensesDialog
LicensesDialog is an open source library to display licenses of third-party libraries in an Android app. -
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. -
LongPressPopup
Make a Popup appear long pressing on a view and handle drag-release events on its elements -
PostOffice
DISCONTINUED. This is a library for easily constructing Holo and Material Design Dialogs. -
AndroidSliderPreference
DISCONTINUED. Android library that allows applications to add dialog-based slider widgets to their settings -
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.
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
Promo
coderabbit.ai
* 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();