the below code always opens with Artists tab in android music player but i want to open Songs tab in android music player when it is launching can this be achieved by intent in android.
Intent intent = new Intent("android.intent.action.MUSIC_PLAYER");
startActivity(intent);
finish();**