共享应用程序的优先级列表

时间:2018-10-03 13:42:43

标签: android share-intent

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你的故事 本机消息 等

很多应用程序似乎都可以做到这一点。请帮忙!

0 个答案:

没有答案