Android Question Question about more instance of activity

cocale2001

Member
Licensed User
Longtime User
Hi to all, i have a question.
In eclipse i create more instance of activity in my client application
(see below code)

Intent intent = new Intent(activity_app , ActivityNaviga.class);
Bundle b = new Bundle();
b.putString("AZIENDA", azienda );
b.putString("APPLICAZIONE", applicazione );
b.putString("DW", dw_lib[0] );
b.putString("LIB", dw_lib[1] );
b.putString("PAR_VOLANTI", dw_lib[2] );
b.putString("MODALITA", "NAVIGAZIONE");
intent.putExtras(b);
startActivity(intent);

I B4A is possible ?
My question stems from the fact that I do not know how much I will have activity in my program .
 
Top