How to startactivityforresult in tab child of TabHost
- by user541383
I have TabHost with tab child like this:
tabHost.addTab(tabHost.newTabSpec("web")
.setIndicator("web")
.setContent(new Intent(this, webview.class)));
In WebView class, I startactivityforresult:
startActivityForResult(new Intent(Webview.this,EventManage.class),GET_CODE);
In Eventmanage class, I set result but can not capture result in webview class.
Anybody can help me with this problem?