All Projects → Jay-YaoJie → KotlinDialogs

Jay-YaoJie / KotlinDialogs

Licence: other
对话框工具,Dialog集合工具,引用了V7包的AlertDialog 使用的 kotlin_version = '1.3.11'写的

Programming Languages

kotlin
9241 projects
java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to KotlinDialogs

CompatAlertDialog
No description or website provided.
Stars: ✭ 27 (+68.75%)
Mutual labels:  dialog, alertdialog
Android-Dialog
Android Dialog(BaseDialog、AlertDialog、ProgressDialog、SuccessDdialog、ErrorDialog、BottomDialog)
Stars: ✭ 36 (+125%)
Mutual labels:  dialog, alertdialog
XStyleDialog
可定制化样式的Android Dialog
Stars: ✭ 37 (+131.25%)
Mutual labels:  dialog, alertdialog
Pmalertcontroller
PMAlertController is a great and customizable alert that can substitute UIAlertController
Stars: ✭ 2,397 (+14881.25%)
Mutual labels:  dialog
Wc Messagebox
基于 Vue 2.0 开发的 Alert, Toast, Confirm 插件, UI仿照 iOS 原生
Stars: ✭ 203 (+1168.75%)
Mutual labels:  dialog
Dialogx
💬DialogX对话框组件库,更加方便易用,可自定义程度更高,扩展性更强,轻松实现各种对话框、菜单和提示效果,更有iOS、MIUI等主题扩展可选
Stars: ✭ 227 (+1318.75%)
Mutual labels:  dialog
Finalcut
A text-based widget toolkit
Stars: ✭ 244 (+1425%)
Mutual labels:  dialog
Arbitrary Text To Image Papers
A collection of arbitrary text to image papers with code (constantly updating)
Stars: ✭ 196 (+1125%)
Mutual labels:  dialog
Focus Layers
Tiny React hooks for isolating focus within subsections of the DOM.
Stars: ✭ 238 (+1387.5%)
Mutual labels:  dialog
Yad
Yet Another Dialog
Stars: ✭ 218 (+1262.5%)
Mutual labels:  dialog
React Native Simple Dialogs
⚛ Cross-platform React Native dialogs based on the Modal component
Stars: ✭ 218 (+1262.5%)
Mutual labels:  dialog
Dialogue
Node based dialogue system
Stars: ✭ 207 (+1193.75%)
Mutual labels:  dialog
Jh flutter demo
a flutter demo
Stars: ✭ 229 (+1331.25%)
Mutual labels:  dialog
Accessible modal window
Accessible modal dialogs
Stars: ✭ 196 (+1125%)
Mutual labels:  dialog
Cbdialog
一个快速创建对话框的工具类库
Stars: ✭ 246 (+1437.5%)
Mutual labels:  dialog
Unit Uskit
unit-uskit
Stars: ✭ 197 (+1131.25%)
Mutual labels:  dialog
Dialog
Simple cross-platform dialog API for go-lang
Stars: ✭ 237 (+1381.25%)
Mutual labels:  dialog
Fabulousfilter
Android library to animate Floating Action Button to Bottom Sheet Dialog and vice-versa
Stars: ✭ 2,477 (+15381.25%)
Mutual labels:  dialog
Dialogrpt
EMNLP 2020: "Dialogue Response Ranking Training with Large-Scale Human Feedback Data"
Stars: ✭ 216 (+1250%)
Mutual labels:  dialog
Alertview
A library to create simple alerts easily with some customization.
Stars: ✭ 222 (+1287.5%)
Mutual labels:  dialog

#Kotlin Dialogs

对话框工具,Dialog集合工具,引用了V7包的AlertDialog 使用的 kotlin_version = '1.3.11'写的 引用包可以直接拿来使用到项目中

    //是否打印日志
    // public static boolean DEBUGMODE = true;
    DialogSettings.DEBUGMODE = true;

    //决定等待框、提示框以及iOS风格的对话框是否启用模糊背景
    //public static boolean use_blur = true;

    //决定等待框、提示框以及iOS风格的对话框的模糊背景透明度(50-255)
    // public static int blur_alpha = 200;

    //决定对话框的默认样式,请使用 TYPE_MATERIAL、TYPE_KONGZUE、TYPE_IOS 赋值
    //  public static int type = 0;
    DialogSettings.type = DialogSettings.TYPE_IOS;

    //决定对话框的模式(亮色和暗色两种),请使用 THEME_LIGHT、THEME_DARK 赋值
    //public static int dialog_theme = 0;
    DialogSettings.dialog_theme = DialogSettings.THEME_LIGHT;

    //决定对话框的默认背景色
    // public static int dialog_background_color = -1;

    //决定提示框的模式(亮色和暗色两种),请使用 THEME_LIGHT、THEME_DARK 赋值
    //public static int tip_theme = 1;
    DialogSettings.tip_theme = DialogSettings.THEME_LIGHT;

提供最简单的调用方式以实现消息框、选择框、输入框、等待提示、警告提示、完成提示、错误提示等弹出样式。以下是目前包含的所有对话框样式预览图: Alt

底部弹出窗口 Alt

气泡提示 Alt

自定义布局 Alt

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].