@Activity(label = "@string/app_name")
@Layout(R.layout.main) (4)
public class HelloTransfuse { (1)
@Inject @View(R.id.textview) (3)
TextView textView;
@Inject @Resource(R.string.hello)
String helloText;
@OnCreate (2)
public void hello() {
textView.setText(helloText);
}
}