How to pass data to the activity that is a member of a TabHost
My application contains a tabhost, added a tab with by passing an Intent object as content. And it is working fine, but when i pass data to this intent object using putExtra() method, i'm getting the following exceptions:
ERROR/AndroidRuntime(1078): java.lang.IllegalStat开发者_C百科eException: Could not execute method of the activity ERROR/AndroidRuntime(1078): Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.abc.xz.LIST (has extras) }
can anyboyd help me to resolve this..
Thanks, venkat
Sorry guys, It is working perfectly, but the problem is with the wrong intent filter in the Manifest file.
精彩评论