How can i able to open whatsapp chat setting page?
How can i able to open whatsapp chat setting page?
i want to open chat setting page of whatsapp in my app. i don't know, it's possible or not,please help me if it's possible.
i tried with this code but i fail.
private void openWhatsApp()
Intent i = new Intent("com.whatsapp.SettingsChat");
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.setPackage("com.whatsapp")
startActivity(i);
SettingsNotifications
IntentFilter
android.intent.action.MAIN
Activity
By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.
as it seems, you can't. only
SettingsNotificationsdo have anIntentFilter(and withoutandroid.intent.action.MAINyou won't be able to launch thatActivitydirectly): github.com/GigaDroid/Decompiled-Whatsapp/blob/master/…– Martin Zeitler
Aug 21 at 4:59