LovelyDialog


Source link: https://github.com/yarolegovich/LovelyDialog

LovelyDialog

This library is a set of simple wrapper classes that are aimed to help you easily create fancy material dialogs.

Gradle

Add this into your dependencies block.

compile 'com.yarolegovich:lovely-dialog:1.0.7' 

Wiki

General

As advised in Effective Java

Favor composition over inheritance.

LovelyDialog doesn't subclass any Dialog related classes, it is just a lightweight extensible wrapper for Dialog and manipulations with custom view. If you would like to improve something - pull requests are appreciated.

Sample project that shows how to work with different dialogs and handle screen rotation is available under the sample module.

Dialog types

Each dialog has colored top, icon, title and message + its own features. There are 6 types of dialogs available:

LovelyStandardDialog

You can set positive, negative and neutral button here. Listeners can be set individually for each button, one for all three or not set at all (onClick on any button dialog will be just dismissed).

new LovelyStandardDialog(this)

 .setTopColorRes(R.color.indigo)

 .setButtonsColorRes(R.color.darkDeepOrange)

 .setIcon(R.drawable.ic_star_border_white_36dp)

 .setTitle(R.string.rate_title)

  .setMessage(R.string.rate_message)

 .setPositiveButton(android.R.string.ok, new View.OnClickListener() {

  @Override

  public void onClick(View v) {

Toast.makeText(context, "positive clicked", Toast.LENGTH_SHORT).show();

  
}

 
}
)

  .setNegativeButton(android.R.string.no, null)

 .show();
 

LovelyInfoDialog

Dialog for displaying information to the user, content is scrollable. There is an option to show Don't show again checkbox. If checked - dialog won't be called next time. This can be useful when showing some tutorials, for example.

new LovelyInfoDialog(this)

 .setTopColorRes(R.color.darkBlueGrey)

 .setIcon(R.drawable.ic_info_outline_white_36dp)

 //This will add Don't show again checkbox to the dialog. You can pass any ID as argument

 .setNotShowAgainOptionEnabled(0)

 .setNotShowAgainOptionChecked(true)

 .setTitle(R.string.info_title)

 .setMessage(R.string.info_message)

 .show();

LovelyChoiceDialog

Here you can use either single choice or multi choice dialogs. In case of multi choice dialog - Confirm button will appear. You can pass items as array, List (.toString() will be used to display them as simple text items) or provide your custom adapter.

Single choice
ArrayAdapter<DonationOption> adapter = new DonationAdapter(this, loadDonationOptions());
 new LovelyChoiceDialog(this)

 .setTopColorRes(R.color.darkGreen)

 .setTitle(R.string.donate_title)

 .setIcon(R.drawable.ic_local_atm_white_36dp)

 .setMessage(R.string.donate_message)

 .setItems(adapter, new LovelyChoiceDialog.OnItemSelectedListener<DonationOption>() {

@Override

public void onItemSelected(int position, DonationOption item) {

 Toast.makeText(context, getString(R.string.you_donated, item.amount),Toast.LENGTH_SHORT).show();

}

 
}
)

 .show();
Multi choice
String[] items = getResources().getStringArray(R.array.food);
 new LovelyChoiceDialog(this, R.style.CheckBoxTintTheme)

 .setTopColorRes(R.color.darkRed)

 .setTitle(R.string.order_food_title)

 .setIcon(R.drawable.ic_food_white_36dp)

 .setItemsMultiChoice(items, new LovelyChoiceDialog.OnItemsSelectedListener<String>() {

  @Override

  public void onItemsSelected(List<Integer> positions, List<String> items) {

Toast.makeText(MainActivity.this,

  getString(R.string.you_ordered, TextUtils.join("\n", items)),

  Toast.LENGTH_SHORT)

  .show();

  
}

 
}
)

 .setConfirmButtonText(R.string.confirm)

 .show();

LovelyTextInputDialog

Dialog with EditText and Confirm button. You can set TextFilter object to specify acceptable input.

new LovelyTextInputDialog(this, R.style.EditTextTintTheme)

 .setTopColorRes(R.color.darkDeepOrange)

 .setTitle(R.string.text_input_title)

 .setMessage(R.string.text_input_message)

 .setIcon(R.drawable.ic_assignment_white_36dp)

  .setInputFilter(R.string.text_input_error_message, new LovelyTextInputDialog.TextFilter() {

  @Override

  public boolean check(String text) {

return text.matches("\\w+");

  
}

 
}
)

 .setConfirmButton(android.R.string.ok, new LovelyTextInputDialog.OnTextInputConfirmListener() {

@Override

public void onTextInputConfirmed(String text) {

Toast.makeText(MainActivity.this, text, Toast.LENGTH_SHORT).show();

}

 
}
)

  .show();

LovelyProgressDialog

Dialog with standard Android ProgressBar. Not cancelable by default.

new LovelyProgressDialog(this)

 .setIcon(R.drawable.ic_cast_connected_white_36dp)

 .setTitle(R.string.connecting_to_server)

 .setTopColorRes(R.color.teal)

 .show();

LovelyCustomDialog

Here you can pass your own view to be displayed. Title, message, color header and icon will still be available for use. You can provide configurators, click listeners and instance state save handlers.

new LovelyCustomDialog(this)

 .setView(R.layout.item_donate_option)

 .setTopColorRes(R.color.darkDeepOrange)

 .setTitle(R.string.text_input_title)

 .setMessage(R.string.text_input_message)

 .setIcon(R.drawable.ic_assignment_white_36dp)

 .configureView(/* ... */)

 .setListener(R.id.ld_btn_yes, /* ... */)

 .setInstanceStateManager(/* ... */)

 .show();

Configuration changes

There is a class LovelySaveStateHandler that helps you to persist information about which dialog was shown (if any) between configuration changes. Each dialog (except LovelyCustomDialog) knows how to save and restore its state. Refer to sample project for examples of how to deal with configuration changes.

Tinting controls

If you want CheckBoxes, EditTexts etc. to be of different color - what you need is to define theme in xml

<style name="TintTheme" parent="Theme.AppCompat.Light.Dialog.Alert">

 <item name="colorAccent">@color/colorToTintWith</item> </style>

and pass it as a second argument to dialog's constructor

new LovelyTextInputDialog(this, R.style.TintTheme)

Standard dialogs compatibility

If you don't want to rewrite your

Dialog.OnClickListener

implementations, you can simply use

LovalyDialogCompat.wrap(yourImplementation)

to pass it to one of the

.setPositiveButton(...) .setNegativeButton(...)

or the like.

License

Copyright 2016 Yaroslav Shevchuk  Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License. You may obtain a copy of the License at  http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. 

Resources

A view with ripple effect.

Android components is an android library which contains improvements of native android components.

Focus on Android form validation, build your validation rules using the method chaining.

QR Generator Library.

This plugin allows you to generate findViewById and other layout-related initialization code.

An Android library which supports overscroll bounce effect.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes