Heins Input Dialogs


Source link: https://github.com/maiconhellmann/heins-input-dialogs

heins-input-dialogs

It is a library with several commonly used Input Dialogs implementations. Impelments follow the guidelines of Google Materials Design and always with a clean and intuitive layout.

Sample Project

You can download the latest sample APK from this repo here: https://github.com/maiconhellmann/heins-input-dialogs/blob/master/app/app-release.apk

It's also on Google Play:

Having the sample project installed is a good way to be notified of new releases. Although Watching this repository will allow GitHub to email you whenever I publish a release.

Gradle Dependency

Repository

The Gradle dependency not yet available on JCenter.

The minimum API level supported by this library is API 13 (Android 3.1 Honeycomb).

Dependency

Project build.gradle:

allprojects {

  repositories {

// ... other repositories here

maven {
 url "http://dl.bintray.com/hellmannmaicon/android" 
}

  
}
 
}
 

Module/app build.gradle:

dependencies {

  // ... other dependencies here
  compile 'br.com.forusers.heinsinputdialogs:input-dialogs-library:0.1.4' 
}
 

Calculator Input Dialog

It is an Input Dialog for Double or Long value input. This component has a double listener: OnInputDoubleListener that must be parameterized by the setPositiveButton() method.

Usage

//Create instance CalculatorInputDialog dialog = new CalculatorInputDialog(context);
  //Event listener(positive button) dialog.setPositiveButton(new OnInputDoubleListener() {

  @Override
  public boolean onInputDouble(AlertDialog dialog, Double value) {

//Do something

return false;//returns if consume event
  
}
 
}
);
 //Show dialog dialog.show();
 

##HeinsInputDialog It is an Input Dialog that provides facilitators for inputting values. It provides listeners for the String, Double, and Long data types, provides method to customize keyboard type, provides getters of all components, fires posiviteButton when you click OK on a clean design...

Usage

Available listeners: OnInputDoubleListener, OnInputStringListener and OnInputLongListener.

 HeinsInputDialog dialog = new HeinsInputDialog(this);
 dialog.setPositiveButton(new OnInputDoubleListener() {

  @Override
  public boolean onInputDouble(AlertDialog dialog, Double value) {

//Do something

return false;//return if consume event
  
}
 
}
);
 dialog.setTitle("Dialog title");
 dialog.setHint("Component hint");
 dialog.show();
 

##HeinsDatePickerDialog
It is a specialization of the DialogFragment class that implements DatePickerDialog.OnDateSetListener. This DatePicker provides facilitators for the use of dates.

Usage

HeinsDatePickerDialog dialog = new HeinsDatePickerDialog();
 dialog.setListener(new OnSelectDateListener() {

@Override
public void onSelectDate(Date date) throws Exception {

  //Do somenthing

}
 
}
);
 dialog.show(getSupportFragmentManager(), getClass().getSimpleName());
 

Donation

You can support the project and thank the author for his hard work.

PayPal

Contributing

Want to contribute? You are welcome! Note that all pull request should go to dev branch.

Developed By

Resources

Amigo is a hotfix library which can hotfix almost everything for your app.

A specification framework for Kotlin.

Easily display and retrieve contact information on Android.

Thin wrapper around the Android Bluetooth LE API.

Android animated clock Drawable.

It is a layout like GridLayout, but children in it will fill the column and you can filter your items with animation.

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