is there a way to get details about applications installed in the device? I want to implement an app which can have at least names of installed applications. thanks in advance.
            Asked
            
        
        
            Active
            
        
            Viewed 109 times
        
    0
            
            
        - 
                    1you need to use PackageManager – ρяσѕρєя K Jul 11 '12 at 15:49
 
1 Answers
0
            
            
        Here you go:
final Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
final List appsList = context.getPackageManager().queryIntentActivities(intent, 0);
        marmor
        
- 27,641
 - 11
 - 107
 - 150