我设法通过从APK中提取linkedIn清单文件找到了意图。
类名是:
com.linkedin.android.home.UpdateStatusActivity
我对感兴趣的任何人的代码是:
if(Utils.doesPackageExist(getSherlockActivity(), "com.linkedin.android")){ Intent shareIntent = new Intent(Intent.ACTION_SEND); shareIntent.setClassName("com.linkedin.android", "com.linkedin.android.home.UpdateStatusActivity"); shareIntent.setType("text/*"); shareIntent.putExtra(android.content.Intent.EXTRA_TEXT, shareText); startActivity(shareIntent);}else{ Toast.makeText(getSherlockActivity(), "Please install the linkedIn app to share your result", Toast.LENGTH_LONG).show();}感谢RyszardWiśniewski在http://pre.google.com/p/android-
apktool/上的工作



