I am working in a media player project but for equalizer .I want to call the inbuilt equalizer in my app but How to open an equalizer using intent ,I am able to open gallery but How I can open an equalizer? I am following these Open gallery app by Intent,Open gallery app
Asked
Active
Viewed 391 times
1
-
What inbuilt equalizer? – brandall Aug 25 '16 at 18:17
-
1The one used by the default mediaplayer – Neelay Srivastava Aug 25 '16 at 18:18
1 Answers
1
I am able to open the media player equalizer by the following way
Intent intent = new Intent();
intent.setAction("android.media.action.DISPLAY_AUDIO_EFFECT_CONTROL_PANEL");
startActivityForResult(intent, 1);
Hope it will help some one.

Neelay Srivastava
- 1,041
- 3
- 15
- 46