我可以使用以下代码来获取 Intent 的 packageName 和 activityInfo.name。
但是我希望得到一个快捷菜单名称,例如下图的“添加到保管箱”,我该怎么办?谢谢!
private void GetShare() {
Intent share = new Intent(android.content.Intent.ACTION_SEND);
share.setType("image/*");
List<ResolveInfo> resInfo = getPackageManager().queryIntentActivities(share, 0);
if (!resInfo.isEmpty()){
for (ResolveInfo info : resInfo) {
Toast.makeText(getApplicationContext(),info.activityInfo.packageName.toLowerCase()
+" CW "
+info.activityInfo.name.toLowerCase()
,Toast.LENGTH_LONG).show();
}
}
}