How to startactivityforresult in tab child of TabHost
Posted
by
user541383
on Stack Overflow
See other posts from Stack Overflow
or by user541383
Published on 2010-12-25T03:13:59Z
Indexed on
2010/12/25
5:54 UTC
Read the original article
Hit count: 243
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?
© Stack Overflow or respective owner