Yoann Delouis
Yoann Delouis
I think it could be good if we also allow to inject interfaces with `RootContext`. Here is an example : ``` java @ViewGroup public class MyViewGroup extends ViewGroup { public...
Yes, we can add this. I don't think it is necessary for 4.0 though.
`rebind` should call `rebind` on all its `EBean`. I don't know if one may need a `@AfterRebind` method.
Yes, we have to make some modifications.
I agree we should provide a way to configure the injection. It would be very useful for testing. However, the proposition does not seem okay to me : 1. `@EConfiguration`...
I think @fikr4n wants a way to specify that some extras are mandatory. They are mandatory because they are arguments of the static method to create an `IntentBuilder` : ```...
You will still have to declare generated class in `AndroidManifest.xml`.
I started to work on this too, but was stuck with `IntentBuilders` of generated activities. I used @Artyomcool way of doing this, with static methods of a factory class and...
I think we should have access to all the parameter given to `OnItemClickListener.onItemClick(...)`.
We should do so. For now, parameters that are not an `int` are considered as items. So views would be considered as item also. We have to change the validation...