如何检查是否安装了音乐播放器?

发布于 2024-11-16 01:42:39 字数 801 浏览 3 评论 0原文

我能够获取已安装或正在运行的应用程序列表。现在我想检测列表中是否存在音乐播放器应用程序?

public void getRunningProcess() {
        List<RunningAppProcessInfo> list2 = am.getRunningAppProcesses();
        listdp = new ArrayList<DetailProcess>();
        for (RunningAppProcessInfo ti : list2) {

            if (ti.processName.equals("system") || ti.processName.equals("com.android.phone")) {
                continue;
            }
            DetailProcess dp = new DetailProcess(this, ti);
            dp.fetchApplicationInfo(packageinfo);
            dp.fetchPackageInfo();
            dp.fetchPsRow(pinfo);
            if (dp.isGoodProcess()) {
                listdp.add(dp);
            }
        }
        Collections.sort(listdp);
        adapter = new ProcessListAdapter(this, listdp);
    }

I am able to fetch the installed or running app list . Now I want to detect in the list is there any music player app present or not?

public void getRunningProcess() {
        List<RunningAppProcessInfo> list2 = am.getRunningAppProcesses();
        listdp = new ArrayList<DetailProcess>();
        for (RunningAppProcessInfo ti : list2) {

            if (ti.processName.equals("system") || ti.processName.equals("com.android.phone")) {
                continue;
            }
            DetailProcess dp = new DetailProcess(this, ti);
            dp.fetchApplicationInfo(packageinfo);
            dp.fetchPackageInfo();
            dp.fetchPsRow(pinfo);
            if (dp.isGoodProcess()) {
                listdp.add(dp);
            }
        }
        Collections.sort(listdp);
        adapter = new ProcessListAdapter(this, listdp);
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌辣 2024-11-23 01:42:39

这应该可以解决问题......

void someFunction(){
    Intent intent = new Intent();
    intent.setType("audio/*");  
    intent.setAction(Intent.ACTION_GET_CONTENT); 
    startActivityForResult(intent,1);
}




    @Override  
        public void onActivityResult(int requestCode, int resultCode, Intent data) {   

            response="";
            String filerealpath=null;

            if (resultCode == RESULT_OK) {  
            System.out.println("mp3 player exists");
    }
    }

this should do the trick.....

void someFunction(){
    Intent intent = new Intent();
    intent.setType("audio/*");  
    intent.setAction(Intent.ACTION_GET_CONTENT); 
    startActivityForResult(intent,1);
}




    @Override  
        public void onActivityResult(int requestCode, int resultCode, Intent data) {   

            response="";
            String filerealpath=null;

            if (resultCode == RESULT_OK) {  
            System.out.println("mp3 player exists");
    }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文