Questions tagged [transfuse]

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

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

http://androidtransfuse.org

10 questions
24
votes
1 answer

What are the specific benefits of using DI on Android?

What are the specific benefits or advantages of using a dependency injection framework for Android, like Dagger, Transfuse or RoboGuice? For example, what kind of apps would benefit the most from using DI? is there more of a performance advantage,…
Acapulco
  • 3,373
  • 8
  • 38
  • 51
8
votes
1 answer

Transfuse vs AndroidAnnotations

I'd like to know if there's anyone using Transfuse and how it differs from Android Annotations. I mean the pros and cons of each one, and if there are other options besides these two. Thanks.
Androiderson
  • 16,865
  • 6
  • 62
  • 72
6
votes
1 answer

How does Transfuse compare with Dagger?

I'm trying to decide whether to use Transfuse or Dagger for Android dependency injection. I've never used Transfuse, and have basic knowledge of Dagger. Thanks much.
Julian A.
  • 10,928
  • 16
  • 67
  • 107
3
votes
2 answers

In Android Transfuse, how to pass Intent back with startActivityForResult and onActivityResult

I'm having a lot of fun playing with the Transfuse framework for Android, but I can't figure out how an Activity can return values through Intent. Normally in an Android app, you'd call startActivityForResult to start an Activity and then…
initialxy
  • 1,193
  • 8
  • 17
3
votes
2 answers

Android Studio with Transfuse

I can successfully set up Transfuse in my android project but when it comes to running the app using Android Studio, it fails. Probably because the Manifest xml has to be empty for Transfuse to take care of. Has anyone ever got these working…
Gustavo Matias
  • 3,508
  • 3
  • 27
  • 30
2
votes
1 answer

How to retrieve SharedPreferences values with Transfuse

I've been playing around with Transfuse (http://androidtransfuse.org/) and am now trying to tackle SharedPreferences. The documentation makes this seem pretty straight forward: @Activity public class Example{ @Inject @Preference(value =…
Justin Pollard
  • 6,661
  • 1
  • 18
  • 20
1
vote
1 answer

Android Transfuse

I am looking to use Transfuse DI for Android over Dagger and other similar frameworks. Searching Google it seems Transfuse does not have as an active community of users as other DI frameworks. Do people use Transfuse? Is it actively…
user3521637
  • 1,622
  • 2
  • 18
  • 25
1
vote
1 answer

How do I inject an Application in a Transfuse Singleton

How can I create a singleton that gets injected with an application context. Just annotating with @Singleton and then using @Inject on the constructor ends up generating an UnscopedProvider class that will not compile. How can I make an…
danb
  • 10,239
  • 14
  • 60
  • 76
0
votes
1 answer

Android appcompat-v7: ActionBar$NavigationMode not found

Since I've upgraded to appcompat-v7 v21, I get the following compilation errors: Exception in thread "pool-117-thread-1" com.sun.tools.javac.code.Symbol$CompletionFailure: class file for android.support.v7.app.ActionBar$NavigationMode not…
Klaus Stadler
  • 395
  • 3
  • 17
0
votes
1 answer

Setting up Maps v2 with Android Transfuse

I'm having a little problem trying to figure out how to set up maps on my android app that uses Transfuse framework. Since I didn't see anything in the examples and documentation regarding maps, I tried to follow this tutorial:…
Gustavo Matias
  • 3,508
  • 3
  • 27
  • 30