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);
    }
link|improve this question

Please show what code you have so far. – Bill the Lizard Jun 17 '11 at 12:19
the above is the code where i am fetching the running processes.......In my I need to detect the installed music player list......Please guide me if there is any other way.....Thanks.. – Vineet Shukla Jun 17 '11 at 12:31
There's an 'edit' link below the tags (right above these comments). Please use that to add your code to the question so it can be formatted properly. – Bill the Lizard Jun 17 '11 at 12:31
feedback

1 Answer

up vote 1 down vote accepted

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");
    }
    }
link|improve this answer
thanks for help.......and I need to list out music players from the device and show it to users in the list.....how to do that...... – Vineet Shukla Jun 17 '11 at 12:35
1  
yeah so now u cant accept the answer :) – 0cool Jun 17 '11 at 12:35
Nope... I need to fetch the list of those music players..... – Vineet Shukla Jun 17 '11 at 13:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.