I've a helper class with one function, that receives an activity as a parameter. I want to inject a view from that activity. Is this possible?
public class myClass {
public void myMethod(final Activity activity) {
// Use here a TextView from that activity - how to inject it?
Thanks in advance!