L-Dialogs


Source link: https://github.com/lewisjdeane/L-Dialogs

L-Dialogs


A small library replicating the new dialogs in android L.


Set Up (Android Studio):

Download the aar here: https://www.dropbox.com/s/276bhapr2g50cak/ldialogs.aar?dl=0

Maven central support will be coming soon.

You can rename the aar and then place it in the libs directory of your project.

Go into your build.gradle and add the following:

dependencies {

  compile fileTree(dir: 'libs', include: ['*.jar'])
  compile 'uk.me.lewisdeane.ldialogs:RENAMED_FILE_NAME_HERE@aar' 
}
  repositories{

  flatDir{

dirs 'libs'
  
}
 
}
 

Usage

##Normal Dialogs

You should now be able to access the class CustomDialog from one of your java files.

To create a new CustomDialog we need to use a builder as so:

// Create the builder with required paramaters - Context, Title, Positive Text CustomDialog.Builder builder = new CustomDialog.Builder(Context context, String title, String positiveText);
  // Now we can any of the following methods. builder.content(String content);
 builder.negativeText(String negativeText);
 builder.darkTheme(boolean isDark);
 builder.typeface(Typeface typeface);
 builder.titleTextSize(int size);
 builder.contentTextSize(int size);
 builder.buttonTextSize(int size);
 builder.titleAlignment(Alignment alignment);
 // Use either Alignment.LEFT, Alignment.CENTER or Alignment.RIGHT builder.titleColor(String hex);
 // int res, or int colorRes parameter versions available as well. builder.contentColor(String hex);
 // int res, or int colorRes parameter versions available as well. builder.positiveColor(String hex);
 // int res, or int colorRes parameter versions available as well. builder.negativeColor(String hex);
 // int res, or int colorRes parameter versions available as well. builder.positiveBackground(Drawable drawable);
 // int res parameter version also available. builder.rightToLeft(boolean rightToLeft);
 // Enables right to left positioning for languages that may require so.  // Now we can build the dialog. CustomDialog customDialog = builder.build();
  // Show the dialog. customDialog.show();

To handle the button clicks you can use the following code:

customDialog.setClickListener(new CustomDialog.ClickListener() {

 @Override

 public void onConfirmClick() {

  
}

  @Override

 public void onCancelClick() {

  
}

}
);

If you want to set a custom view in the dialog you can use the following method.

customDialog.setCustomView(View customView);

Then do what you need to do with the custom views content in onConfirmClick or onCancelClick.

##List Dialogs

To use the CustomListDialog we need to use a builder again, this is done as follows:

// Create list dialog with required parameters - context, title, and our array of items to fill the list. CustomListDialog.Builder builder = new CustomListDialog.Builder(Context context, String title, String[] items);
  // Now again we can use some extra methods on the builder to customise it more. builder.darkTheme(boolean isDark);
 builder.typeface(Typeface typeface);
 builder.titleAlignment(Alignment alignment);
 // Use either Alignment.LEFT, Alignment.CENTER or Alignment.RIGHT builder.itemAlignment(Alignment alignment);
 // Use either Alignment.LEFT, Alignment.CENTER or Alignment.RIGHT builder.titleColor(String hex);
 // int res, or int colorRes parameter versions available as well. builder.itemColor(String hex);
 // int res, or int colorRes parameter versions available as well. builder.titleTextSize(int size);
 builder.itemTextSize(int size);
 builder.rightToLeft(boolean rightToLeft);
 // Enables right to left positioning for languages that may require so.  // Now we can build our dialog. CustomListDialog customListDialog = builder.build();
  // Finally we can show it. customListDialog.show();

In order to recieve the click events from the dialog, simply use the following method on your customListDialog:

customListDialog.setListClickListener(new CustomListDialog.ListClickListener() {

 @Override

 public void onListItemSelected(int i, String[] strings, String s) {

  // i is the position clicked.

  // strings is the array of items in the list.

  // s is the item selected.

 
}

}
);

To add a listview selector use the following code:

StateListDrawable selector = new StateListDrawable();
 selector.addState(new int[]{
android.R.attr.state_pressed
}
, new ColorDrawable(R.color.color1));
 selector.addState(new int[]{
-android.R.attr.state_pressed
}
, new ColorDrawable(R.color.color2));
  // The important part: customListDialog.getListView().setSelector(selector);

This library will be updated often, enjoy!

Resources

Truth is a testing framework designed to make your tests and their error messages more readable and discoverable, while being extensible to new types of objects.

Truth adopts a fluent style for test propositions, is extensible in several ways, supports IDE completion/discovery of available propositions, and supports different responses to un-true propositions. Truth can be used to declare JUnit-style assumptions (which skip the test on failure), assertions (interrupt the test on failure), and expectations (continue the test, but collect errors and report failure at the end).

Use gradle tasks to run specific adb commands. You can use this plugin to do things such as:

  • Find all devices attached and get basic info about them
  • Select the first one that complies with a custom rule
  • Install a specific APK from the available build types + flavours
  • Clear preferences or do something related to the APK to prepare for tests
  • Run monkey for that specific APK on that specific device
  • Uninstall the APK

Bash script that exports content provider's data to raw and CSV format. It can be your own content provider or any other provider that android decided not to block with permissions.

Android Studio Support for Additional File Types (CSS & JavaScript).

Current File Types Added:

  • CSS ( Cascading Style Sheet )
  • JavaScript

This plugin help you to set material design icons to your Android project.

Small Android library for use the Interactor (use case) and Executor for running code on a ThreadPool Thread or UI Thread. Normally this library is used for implement the Clean Architecture.

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