项目作者: kobakei

项目描述 :
[DEPRECATED] Annotation based intent builder for Android activities and services
高级语言: Java
项目地址: git://github.com/kobakei/grenade.git
创建时间: 2016-04-08T09:01:10Z
项目社区:https://github.com/kobakei/grenade

开源协议:Apache License 2.0

下载


Grenade (Deprecated)

Now I don’t have time to maintain this library. By using Kotlin (especially delegated property), we can put and get intent extra as type safe way without this libary.

Build Status
JitPack
Android Arsenal

Grenade is annotation based intent builder for activities and services.
By using this library, you can build Intent with extras and retrieve extras by type safe way and less code.

This library is strongly inspired by emilsjolander/IntentBuilder but some advanced features are added.

Download

Project build.gradle

  1. allprojects {
  2. repositories {
  3. ...
  4. maven { url "https://jitpack.io" }
  5. }
  6. }

App build.gradle

  1. dependencies {
  2. ...
  3. annotationProcessor 'com.github.kobakei.grenade:processor:LATEST_VERSION'
  4. compile 'com.github.kobakei.grenade:library:LATEST_VERSION'
  5. }

LATEST_VERSION is JitPack

NOTE: if you use Android Gradle Plugin before 2.2.0, you must use android-apt plugin instead of annotationProcessor configuration.

Basic usage

Add @Navigator annotation to activity and @Extra annotation to fields.

  1. @Navigator
  2. public class DetailActivity extends AppCompatActivity {
  3. // Required params
  4. @Extra
  5. String foo;
  6. @Extra
  7. int bar;
  8. // Optional params
  9. @Extra @Optional
  10. String hoge;
  11. @Extra @Optional
  12. boolean fuga;
  13. @Override
  14. protected void onCreate(Bundle savedInstanceState) {
  15. super.onCreate(savedInstanceState);
  16. }
  17. }

Once you build, DetailActivityNavigator will be generated. Building intent to launch DetailActivity is as below.

  1. // Build intent and start activity
  2. startActivity(new DetailActivityNavigator(foo, bar)
  3. .hoge(hoge)
  4. .fuga(fuga)
  5. .flags(Intent.FLAG_ACTIVITY_BROUGHT_TO_FRONT)
  6. .build(context);

And handling intent is as below.

  1. @Navigator
  2. public class DetailActivity extends AppCompatActivity {
  3. ...
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. // Inject fields
  8. DetailActivityNavigator.inject(this, getIntent());
  9. }
  10. }

Of course, you can use Grenade to start Service and BroadcastReceiver as same way.

  1. @Navigator
  2. public class MyIntentService extends IntentService{
  3. @Extra
  4. String foo;
  5. @Extra
  6. String baz;
  7. @Override
  8. protected void onHandleIntent(Intent intent) {
  9. MyIntentServiceNavigator.inject(this, intent);
  10. }
  11. }
  12. // Code to start service
  13. startService(new MyIntentServiceNavigator("foo", "baz").build(this));

Multiple constructors

By specifying fields in @Navigator annotation, multiple constructors with different set of required params will be generated.

  1. @Navigator({
  2. "foo,bar1",
  3. "foo,bar2"
  4. })
  5. public class DetailActivity extends AppCompatActivity {
  6. @Extra
  7. String foo;
  8. @Extra
  9. int bar1;
  10. @Extra
  11. long bar2;
  12. ...
  13. }

You can use them as below.

  1. startActivity(new DetailActivityNavigator(foo, bar1)
  2. .build(context));
  3. startActivity(new DetailActivityNavigator(foo, bar2)
  4. .build(context));

Handling onActivityResult

Setting Intent object to onActivityResult has the same problem as above.
Grenade offers APIs to build Intent to pass setResult and to handle onActivityResult as type safe way.

As an example, let’s think about handling DetailActivity’s result in MasterActivity.

At first, in MasterActivity, add method to handle result of DetailActivity with @OnActivityResult annotation. Moreover, call MasterActivityNavigator.onActivityResult in onActivityResult.

  1. @OnActivityResult(requestCode = REQ_CODE_DETAIL1, resultCodes = {Activity.RESULT_OK})
  2. void onDetailOk(String foo, int bar) {
  3. Toast.makeText(this, "Detail OK", Toast.LENGTH_SHORT).show();
  4. }
  5. @Override
  6. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
  7. super.onActivityResult(requestCode, resultCode, data);
  8. MainActivityNavigator.onActivityResult(this, requestCode, resultCode, data);
  9. }

In DetailActivity, setting result is as below:

  1. setResult(RESULT_OK, MainActivityNavigator.resultForOnDetailOk("Hello", 123));
  2. finish();

Once you build, putting extras and getting extras will be done in MainActivityNavigator.

Built-in support of Parceler

Parceler is a famous library to generate Parcelable reader/writer.
Grenade offers build-in support of Parceler.
When field type has @Parcel annotation, Grenade will wrap/unwrap an entity with Parceler.
To install Parceler to your project, please read Parceler’s README.

  1. // Entity class with @Parcel annotation
  2. @Parcel
  3. public class User {
  4. ...
  5. }
  1. @Navigator
  2. public class DetailActivity extends AppCompatActivity {
  3. // Use parcelable entity as field
  4. @Extra
  5. User user;
  6. ...
  7. }
  1. startActivity(new DetailActivityNavigator(new User())
  2. .build(context));

ProGuard

If you use Grenade with Parceler, ProGuard setting of Parceler is needed.

License

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