Coder Social home page Coder Social logo

ksenchy / intentbuilder Goto Github PK

View Code? Open in Web Editor NEW

This project forked from trikke/intentbuilder

0.0 1.0 0.0 85 KB

IntentBuilder is a type safe way of creating intents and populating them with extras. Use them with your Activities and Services.

License: Other

Java 100.00%

intentbuilder's Introduction

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

##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.0.1'
    apt 'be.trikke:intentbuilder-compiler:1.0.1'
}

##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 @Nullable annotation.

Sample activity using IntentBuilder:

@BuildIntent
public class DetailActivity extends AppCompatActivity {

	@Extra String one;

	@Extra String two;

	@Extra @Nullable String three;

	@Extra @Nullable int four;

	@Extra("five") @Nullable String mFive;

	@Extra @Nullable boolean six;

	@Override public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		DetailActivityIntent.inject(getIntent(), this);
		// use extras
	}
}

##Launching

Use the builder to create the Intent.

Intent i = new DetailActivityIntent("een", "twee")
                        .three("drie")
                        .five("5")
                        .build(MainActivity.this);
startActivity(i);

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

Flow.gotoDetailActivity("een", "twee").three("drie").five("5").six(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, "een","twee")

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

##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.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.