2011年1月8日 星期六

[Android]A.apk去使用b.apk中的activity

ptt看到的 先留下來


Intent intent = new Intent(Intent.ACTION_MAIN);  

intent.setComponentName(new ComponentName(pkg,cls))
startActivity(intent);                              
where pkg is the package name of b.apk              
cls is the name of class you want to start           
ACTION_MAIN可以換成別的 看需求

沒有留言:

張貼留言