@EActivity(R.layout.data_layout)
public class MyActivity extendsActivity
{
@Bean MyEbean bean;
@AfterViews
public void setupView()
{
bean.loadData("Test name");
}
}
@EBean public class MyEbean
{
@RootContext context;
@ViewById(R.id.name_field)
TextView nameField;
public void loadData(String name)
{
nameField.setText(name);
}
}
"nameField" in loadData() è null. Allo stesso tempo, se faccio questo all'interno loadData()Impossibile ottenere @ViewById per lavorare all'interno di un @EBean
nameField = (TextView)((Activity)context).findViewById(R.id.name_field); it's all good. So the view isdefinitely there. Also if I call this method from a retrofit callback
(vale a dire dopo un ritardo) "nome" è auto popolata.
che sto usando Android 3.3.2 NOTE