IntentBuilder


Source link: https://github.com/Trikke/intentbuilder

##IntentBuilder IntentBuilder is a type safe way of creating intents and populating them with extras. Use them with your Activities, Services, Broadcastreceivers and other components.

##Installation

buildscript {

  repositories {

jcenter()
  
}

  dependencies {

classpath 'com.neenbedankt.gradle.plugins:android-apt:1.4'
  
}
 
}
  apply plugin: 'com.neenbedankt.android-apt'  dependencies {

  compile 'be.trikke:intentbuilder-api:1.1.4'
  apt 'be.trikke:intentbuilder-compiler:1.1.4' 
}

Version History

  • v1.0 Initial release
  • v1.1 Added support for Broadcastreceivers. Changed the usage of @Nullable and created an extra annotation @ExtraOptional to use with optional values.

##Usage Annotate your activities and services with an @BuildIntent annotation so that they are picked up by the library. For every class with an @BuildIntent annotation a class named <ComponentName>Intent will be generated. If your Component takes in parameters via extras in the intent you can now mark field with the @Extra annotation and they can be injected with the static inject method on the generated intent builder class. Extras can be marked as optional with the @ExtraOptional annotation.

Sample activity using IntentBuilder:

@BuildIntent public class DetailActivity extends AppCompatActivity {

@Extra String requiredString;

@Extra boolean requiredBoolean;

@ExtraOptional String optionalString;

@ExtraOptional int optionalInteger;

@ExtraOptional("coolName") String optionalStringDiffName;

@ExtraOptional boolean optionalBoolean;

@Override public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

DetailActivityIntent.inject(getIntent(), this);

setContentView(R.layout.activity_detail);

 // use extras
  
}
 
}

##Launching

Use the builder to create the Intent.

Intent i = new DetailActivityIntent("Required String", true)

  .optionalString("Optional String")

  .optionalInteger(102)

  .build(MainActivity.this);
 startActivity(i);

Or quickly build an intent with the provided Flow shortcut class.

Flow.gotoDetailActivity("i'm a required String", true)

  .optionalString("i'm just optional")

  .coolName("Trikke")

  .optionalBoolean(true)

  .flag(Intent.FLAG_ACTIVITY_CLEAR_TOP)

  .launch(MainActivity.this);

Use the provided Flow shortcut class to quickly launch an Intent with it's required extra's (if any).

Flow.launchDetailActivity(MainActivity.this, "required", true)

The Flow provides quick methods for getting all your generated Intents, and has launch methods for compatible Components.

Flow.getMyBroadcastReceiver("A required String").action(MY_INTENT_FILTER).send(MainActivity.this);
Flow.startMyService(MainActivity.this, "Required String");

##Contributing Please do! Let me know what you think, and PR's are always welcome!

##Thanks Thanks to emilsjolander and robertoestivill for their source and inspiring me to get off my butt and make this.

Resources

JDROID Framework provides a programming and architectural model for modern Java-based enterprise and android applications.

This library provides a fully customizable linear compass view.

BlurDialogFragment allows to display DialogFragment with a burring effect behind. The blurring part is achieved through FastBlur algorithm.

This project is based on android.support.v4.app.DialogFragment and android.support.v7.app.ActionBarActivity.

sweet-alert-dialog is a library to show beautiful alert dialogs.

Implementation of Ripple effect from Material Design for Android API 9+.

100% open source version of the popular Talon for Twitter app on Android.

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