All Projects → nikialeksey → Fullscreendialog

nikialeksey / Fullscreendialog

Licence: mit
Android Material full screen dialog

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Fullscreendialog

Materialstyleddialogs
A library that shows a beautiful and customizable Material-based dialog with header. API 14+ required.
Stars: ✭ 1,139 (+10254.55%)
Mutual labels:  material-design, dialog
Noty
A simple library for creating animated warnings/dialogs/alerts for Android.
Stars: ✭ 136 (+1136.36%)
Mutual labels:  material-design, dialog
Simpledialogfragments
A collection of easy to use and extendable DialogFragment's for Android
Stars: ✭ 94 (+754.55%)
Mutual labels:  material-design, dialog
Lovelydialog
This library is a set of simple wrapper classes that are aimed to help you easily create fancy material dialogs.
Stars: ✭ 1,043 (+9381.82%)
Mutual labels:  material-design, dialog
Pickimage
Shows a DialogFragment with camera and gallery options. User can choose wich provider wants to pick images from. 📸 🖼️
Stars: ✭ 386 (+3409.09%)
Mutual labels:  material-design, dialog
Fullscreendialog
A DialogFragment that implements the Full-screen dialog pattern defined in the Material Design guidelines.
Stars: ✭ 111 (+909.09%)
Mutual labels:  material-design, dialog
React Native Material Dialog
Material design dialogs for React Native 💬
Stars: ✭ 135 (+1127.27%)
Mutual labels:  material-design, dialog
Androidmaterialdialog
Provides builders, which allow to create various "Material Design"-styled dialogs
Stars: ✭ 161 (+1363.64%)
Mutual labels:  material-design, dialog
Aestheticdialogs
📱 An Android Library for 💫fluid, 😍beautiful, 🎨custom Dialogs.
Stars: ✭ 352 (+3100%)
Mutual labels:  material-design, dialog
Fancyalertdialog Android
Make your native android Dialog Fancy. A library that takes the standard Android Dialog to the next level with a variety of styling options. Style your dialog from code.
Stars: ✭ 260 (+2263.64%)
Mutual labels:  material-design, dialog
Materialdialog Android
📱Android Library to implement animated, 😍beautiful, 🎨stylish Material Dialog in android apps easily.
Stars: ✭ 602 (+5372.73%)
Mutual labels:  material-design, dialog
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.
Stars: ✭ 409 (+3618.18%)
Mutual labels:  material-design, dialog
Bottomdialogs
An Android library that shows a customizable Material-based bottom sheet. API 11+ required.
Stars: ✭ 624 (+5572.73%)
Mutual labels:  material-design, dialog
Example React Fullscreen
Example of the Fullscreen API with React using hooks
Stars: ✭ 22 (+100%)
Mutual labels:  fullscreen
Material Design Colors
Palette for Android Material Design colors.
Stars: ✭ 25 (+127.27%)
Mutual labels:  material-design
Laravel Angular6 Material
Laravel 5.6 + Angular 6 + Material Design single page application
Stars: ✭ 19 (+72.73%)
Mutual labels:  material-design
Materialdesignsamples
Material Design 系列控件samples,讲了Material Design 系列新控件的使用方法和一些场景示例,使用详情请看对应博客,持续更新中...
Stars: ✭ 900 (+8081.82%)
Mutual labels:  material-design
Wi Pwn
ESP8266 Deauther ​with a material design WebUI 📶
Stars: ✭ 839 (+7527.27%)
Mutual labels:  material-design
Zsbpads
Material design、MVC、OKHttp、Glide、greendao 设计的一款面试题题库的app完整项目
Stars: ✭ 25 (+127.27%)
Mutual labels:  material-design
Mdl Skeleton
Material Design skeleton with ssr-engine
Stars: ✭ 17 (+54.55%)
Mutual labels:  material-design

BCH compliance Codacy Badge codebeat badge codecov Build Status Dependency Status 0pdd

License: MIT API Download

FullScreenDialog

Implementation of full-screen-dialogs from material guidelines.

Video description

Add to project

repositories {
    jcenter()
}

dependencies {
    ...
    compile('com.nikialeksey:fullscreendialog:<latest version>@aar') {
        transitive true
    }
    ...
}

Usage

new DissmissOnActionDialog(
    new DismissOnCloseDialog(
        new FsDialog(
            context, 
            R.style.AppTheme,
            new FsDialogToolbar(context, "Title",
                new FsCloseButton(
                    new SimpleButton(
                        new ClickListener() {
                            @Override
                            public void onClick() {
                                Toast.makeText(context, "Close", Toast.LENGTH_LONG).show();
                            }
                        }), 
                        closeIcon),
                new FsActionButton(
                    new SimpleButton(
                        new ClickListener() {
                            @Override
                            public void onClick() {
                                Toast.makeText(context, "Action", Toast.LENGTH_LONG).show();
                            }
                        }), 
                        "Action")), 
            content))).show();
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].