1

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

Community
  • 1
  • 1
Neelay Srivastava
  • 1,041
  • 3
  • 15
  • 46

1 Answers1

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