I am developing an app in which I am using multiple Activity Under Tab Activity .I am Using this Tutorial.
I want to get the Result from next Activity. How can i do it. I am not able to find it. I have read two or three Example such as this and this. But I am not able to find out how can I get the result. I also tried
View view = getLocalActivityManager().startActivityForResult("Search",
new Intent(this, WhatMenu.class).
addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP)).getDecorView();
But it only Supports `startActivity()`
. Any Help will be Appreciable.
Thanks in Advance
I have solved it via
ViewFlipperThanks every body for help.