• Stars
    star
    428
  • Rank 101,481 (Top 2 %)
  • Language
    Kotlin
  • License
    Apache License 2.0
  • Created almost 8 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Simple Android Library, that provides easy way to start the Activities with arguments.

Warning: Library is not maintained anymore. If you want to take care of this library, propose it via Pull Request. It needs adjustmensts for newer versions of Android and Gradle.

ActivityStarter

Android Library that provides simpler way to start the Activities with multiple arguments.

codebeat badge Build Status Stories in Ready Join the chat at https://gitter.im/ActivityStarter/Lobby Analytics Analytics

Library bindes fields to Actity, Fragment, Service or Receiver arguments and generates simple starters. Thanks to that you can:

  • Eliminate all putExtra and getXXXExtra methods
  • Forget about all keys that were used to pass arguments (unless you want to define custom onces)
  • Start liking starting flags and intent creation

Media:

Full documentation is located here. Here is TOC:

To stay up-to-date with news about library Twitter URL

Example

With ActivityStarter, to pass arguments to Activity, Fragment, Service or BroadcastReceiver, all you need is @Arg annotation before parameters that needs to be passed:

public class MainActivity extends BaseActivity {

    @Arg String name;
    @Arg int id;
    @Arg char grade;
    @Arg boolean passing;
}

And ActivityStarter.fill(this, savedInstanceState); in BaseActivity:

class BaseActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        ActivityStarter.fill(this, savedInstanceState);
    }

    @Override // This is optional, only when we want to keep arguments changes in case of rotation etc.
    protected void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        ActivityStarter.save(this, outState);
    }
}

Then, you can start Activity using generated starter:

MainActivityStarter.start(context, name, id, grade, passing);

Similar way, you can take Intent or start activity with flags:

MainActivityStarter.getIntent(context, name, id, grade, passing);
MainActivityStarter.startWithFlags(context, name, id, grade, passing, FLAG_ACTIVITY_SINGLE_TOP);

Arguments can be passed to Activities, Fragments, Services or BroadcastReceiver. Arguments can also be Optional.

Optional

You can make optional arguments:

public class MainActivity extends BaseActivity {

    @Arg(optional = true) String name;
    @Arg(optional = true) long id = -1;
}

Then additional generators with not all arguments will be created

MainActivityStarter.start(context);
MainActivityStarter.start(context, name);
MainActivityStarter.start(context, id);
MainActivityStarter.start(context, name, id);

Further reading here.

Kotlin

ActivityStarter is supporting Kotlin to allow properties that are not-null and both read-write or read-only:

class StudentDataActivity : BaseActivity() {

    @get:Arg(optional = true) var name: String by argExtra(defaultName)
    @get:Arg(optional = true) val id: Int by argExtra(defaultId)
    @get:Arg var grade: Char  by argExtra()
    @get:Arg val passing: Boolean by argExtra()
}

Values are taken lazily and kept as fields, but there are still saved if ActivityStarter.save(this) is called inonSaveInstanceState. When all properties are provided by delegate, then there is no need to call ActivityStarter.fill(this, savedInstanceState) in onCreate.

Parceler

Since version 0.70, there is native support for Parceler library. To wrap and unwrap parameter using Parceler, use Arg annotation with parceler property set to true:

@Arg(parceler = true) StudentParcel studentParceler;

See example here.

Installation

For Java project add in build.gradle file:

dependencies {
    compile 'com.marcinmoskala.activitystarter:activitystarter:1.10'
    apt 'com.marcinmoskala.activitystarter:activitystarter-compiler:1.10'
}

For Kotlin project add in build.gradle file:

apply plugin: 'kotlin-kapt'

dependencies {
    compile 'com.marcinmoskala.activitystarter:activitystarter:1.10'
    kapt 'com.marcinmoskala.activitystarter:activitystarter-compiler:1.10'
}

If you want to use Kotlin-specific elements (property delegate argExtra), then add in build.gradle file:

apply plugin: 'kotlin-kapt'

dependencies {
    compile 'com.marcinmoskala.activitystarter:activitystarter:1.10'
    compile 'com.marcinmoskala.activitystarter:activitystarter-kotlin:1.10'
    kapt 'com.marcinmoskala.activitystarter:activitystarter-compiler:1.10'
}

And while library is located on JitPack, remember to add on module build.gradle (unless you already have it):

repositories {
    maven { url 'https://jitpack.io' }
}

More information on Installation page.

Other libraries

If you like it, remember to leave the star and check out my other libraries:

  • PreferenceHolder - Library for simple SharedPreference management in Kotlin
  • ArcSeekBar - Good looking curved Android SeekBar
  • VideoPlayView - Custom Android view with video player, loader and placeholder image
  • KotlinAndroidViewBindings - Bindings for properties with simple Kotlin types (Boolean, String) to layout traits (visibility, text).

License

Copyright 2017 Marcin Moskaล‚a

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

More Repositories

1

ArcSeekBar

Good looking curved Android SeekBar
Kotlin
514
star
2

KtAcademyPortal

Multiplatform Kotlin application of KotlinAcademy
CSS
443
star
3

KotlinDiscreteMathToolkit

Set of extensions for Kotlin that provides Discrete math functionalities
Kotlin
183
star
4

PreferenceHolder

SharedPreference usage made fun in Kotlin
Kotlin
155
star
5

KotlinAndroidViewBindings

Bindings for properties with simple Kotlin types (Boolean, String) to layout traits (visibility, text).
Kotlin
126
star
6

kotlin-coroutines-recipes

Kotlin
113
star
7

VideoPlayView

Custom Android view with video player, loader and placeholder image
Kotlin
94
star
8

coroutines_sources

Kotlin
80
star
9

KotlinPreferences

Android Library to make SharedPreferences usage easier.
Kotlin
50
star
10

MarvelGallery

Example of Kotlin Android application
Kotlin
47
star
11

KotlinMultiplatformExample

Kotlin
45
star
12

kotlin-coroutines-workshop

Kotlin
38
star
13

MVTest

Code created as an examples for presentation about MVC vs MVP vs MVVM.
Kotlin
34
star
14

kotlin-exercises

Kotlin
29
star
15

kotlin_essentials_sources

Kotlin
20
star
16

SimpleKotlinMvpBoilerplate

Presentation of simple Kotlin Android MVP
Kotlin
19
star
17

effective-kotlin-book

Some open-sourced chapters of the Effective Kotlin
16
star
18

effective-kotlin-tests

JavaScript
13
star
19

functional_kotlin_sources

Kotlin
10
star
20

advanced-kotlin-workshop-tasks

Kotlin
10
star
21

caffeine-suspending

Kotlin
9
star
22

effective-kotlin-workshop

Kotlin
7
star
23

kotlin-android-workshop

Project with exercises for Kotlin Android workshop
Kotlin
7
star
24

measured-wrapper-ksp

Kotlin
6
star
25

WorkoutMPP

Kotlin
6
star
26

testing-viewmodel

Kotlin
6
star
27

Website

CSS
6
star
28

coroutines-benchmarks

Kotlin
6
star
29

AnkiMarkdown

Kotlin
5
star
30

coroutines-short-workshop-tasks

Kotlin
5
star
31

advanced_kotlin_sources

Kotlin
5
star
32

advent-2021

Kotlin
4
star
33

pacmanFunctional

Kotlin
3
star
34

generate-builder

Kotlin
3
star
35

pong

HTML
3
star
36

FindMyPhone

Kotlin
3
star
37

UserManagementApp

An example project using Jetpack Compose, Kotlin Coroutines, MVVM, proper unit testing
Kotlin
3
star
38

Minions

This is sink of different ideas for Kotlin usage to improve Android Development
Kotlin
3
star
39

StackTester

Simple App for testing different Activity Stack flags
Kotlin
3
star
40

effectivekotlin_sources

Kotlin
2
star
41

generateinterface-ksp

Kotlin
2
star
42

kotlin_programmer_dictionary

2
star
43

DependencyInjection-KSP

Simple example showing KSP processing with multiple rounds of execution.
Kotlin
2
star
44

marcinmoskala.github.io

CSS
2
star
45

testing-android-exercise

Kotlin
2
star
46

coroutines-android-testing-example

Kotlin
2
star
47

sudoku-generator-exercise

Kotlin
2
star
48

snake

Snake game written in Python
Python
1
star
49

measured-wrapper-ap

Kotlin
1
star
50

JSCoroutinesRecipes

Set of recipes for useful Kotlin/JS coroutines functions
1
star
51

effective-kotlin-website

HTML
1
star
52

kotlin-workshop

Kotlin
1
star
53

MorningWorkout

Kotlin
1
star
54

workshop-android-16-18.4.19

Kotlin
1
star
55

cde-droidcon-it

This is project made during Maciej Gรณrski workshops about Continuous Delivery
Java
1
star
56

kotlin_essentials_book_pl

Kotlin
1
star
57

ktor-playground

Kotlin
1
star
58

NetworkClientTests

Kotlin
1
star
59

DeckMarkdown

Kotlin
1
star
60

ksp-template

Kotlin
1
star
61

next-starter-jamstack

JavaScript
1
star