tags:

views:

10

answers:

0

HI All,

i have multiple activities in my activityGroup under tabactvity.

  1. I want to start the child actvity for result.

    Intent i = new Intent(this, addstocks.class);

    View view = stocksgroup.group.getLocalActivityManager()
    .startActivity("show_city", i
    .addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP))
    .getDecorView();

    // Again, replace the view
    stocksgroup.group.replaceView(view);

this code basically taking me to the next activity. here i want to implement the actvity for result. hw can i do that?