I would like to know if there is a way to prioritize the share apps,
below code I'm using to get apps
public List<ResolveInfo> showAllShareApp() {
List<ResolveInfo> mApps;
Intent intent = new Intent(android.content.Intent.ACTION_SEND);
intent.setType("image/*");
PackageManager pManager = getPackageManager();
mApps = pManager.queryIntentActivities(intent, PackageManager.COMPONENT_ENABLED_STATE_DEFAULT);
return mApps;
}
返回列表,同时向用户显示我要订购的列表,例如 Insta Feed Insta故事 Whatsapp的 脸书 接触最多的Whatsapp 设为个人资料图片 FB你的故事 本机消息 等
很多应用程序似乎都可以做到这一点。请帮忙!