Transfuse

Additional

Language
Java
Version
N/A
Created
Sep 19, 2011
Updated
Jul 19, 2021 (Retired)
Owner
John Ericksen (johncarl81)
Contributors
John Ericksen (johncarl81)
dan bachelder (dbachelder)
Mingfai Ma (mingfai)
The Gitter Badger (gitter-badger)
Logan Johnson (loganj)
Paul Tsupikoff (goodsoft)
Robin Hos (rehos)
dependabot[bot]
raayu83
9
Activity
Badge
Generate
Download
Source code

Transfuse

Transfuse is a Java Dependency Injection (DI) and integration library geared specifically for the Google Android API.

There are several key features that make Transfuse a great framework to use with Android:

  • Dependency Injection - Transfuse implements the JSR-330 standard annotations and passes the included unit tests.

  • POJO Components - Transfuse gives users the ability to develop Android components in Plain Old Java Objects (POJO), enabling a testable, decoupled and flexible style.

  • Compile Time Code Generation - Transfuse is remarkably small, lightweight and fast due to the technique of generating supporting code at compile time.

  • Manifest Management - Transfuse manages the Android Manifest, eliminating the duplicated effort of declaring and registering components.

All of these features help eliminate boilerplate plumbing code and make Android applications much easier to write.

Example

Using Transfuse, an Android Activity looks like the following:

@Activity(label = "@string/app_name")
@Layout(R.layout.main)
public class HelloTransfuse {

    @Inject @View(R.id.textview)
    TextView textView;

    @Inject @Resource(R.string.hello)
    String helloText;

    @OnCreate
    public void hello() {
        textView.setText(helloText);
    }
}
  1. Now, Activities no longer extend the android.app.Activity class.

  2. The Android Activity lifecycle is handled via lightweight events. Any component within the injection graph may define event methods to be called during those phases of the lifecycle.

  3. All specialty injections, such as injecting View elements, are designated with qualifier injections (@View, @Resource, etc.).

  4. Activity Manifest metadata, such as the label, are now defined on the class level instead of the AndroidManifest.xml file. This puts all the relevant information regarding the Activity in one place. Transfuse handles the job of registering the Activity and all the associated metadata in the AndroidManifest.xml file.

Interested? Check out the website for details.

Download

You may download Transfuse as a Maven dependency:

<dependency>
    <groupId>org.androidtransfuse</groupId>
    <artifactId>transfuse</artifactId>
    <version>${transfuse.version}</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>org.androidtransfuse</groupId>
    <artifactId>transfuse-api</artifactId>
    <version>${transfuse.version}</version>
</dependency>

or Gradle:

apt "org.androidtransfuse:transfuse:${transfuseVersion}"
compile "org.androidtransfuse:transfuse-api:${transfuseVersion}"

Or from Maven Central.

License

Copyright 2011-2015 John Ericksen

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.