Paul
Paul

Reputation: 3880

Open Android installed applications screen (app drawer) programmatically

Is there a way (maybe a workaround) to open the Android installed applications screen programmatically? More than that I want to open the widgets page, but not sure if is possible. I’ve tried in this way:

Intent pickIntent = new Intent(Intent.ACTION_ALL_APPS);
pickIntent.addFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
pickIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(pickIntent);

but Intent.ACTION_ALL_APPS actually lists all available applications and using this is closing my app.

Upvotes: 3

Views: 4207

Answers (1)

ridoy
ridoy

Reputation: 6332

You can try like link to open the installed application page like a list..

Also can see the answer form here

Upvotes: 1

Related Questions