Skip to content Skip to sidebar Skip to footer

Android Intent Not Work For Wifi,sound,bluetooth?

I'm try to call setting which display WiFi,sound and bluetooth but is not work: i will put my code here and also logcat i want this settings on button click event and display only

Solution 1:

You need to use the EXTRA_AUTHORITIES like this:

intent.putExtra(Settings.EXTRA_AUTHORITIES, newString[] {
    Calendar.AUTHORITY
});

and intent.addCategory is not used for this. use only one android.provider.Settings. type per intent.

Solution 2:

It is saying ActivityNotFound. So problem must be in this line.

Intentintent=newIntent(android.provider.Settings.EXTRA_AUTHORITIES);

I think you should try

startActivity(new Intent(Settings.ACTION_SETTINGS));

Solution 3:

NoActivityfoundtohandleIntent { 
    act=android.settings.WIFI_DISPLAY_SETTINGS 
}

onCreateXT1706onCreateMobileName=XT1706onCreateWIFI_DISPLAY_SETTINGSisnullonCreate    android.content.ActivityNotFoundException:NoActivityfoundtohandleIntent { act=android.settings.WIFI_DISPLAY_SETTINGS }
onCreateXT1706onCreateMobileName=XT1706onCreateWIFI_DISPLAY_SETTINGSisnullonCreate    android.content.ActivityNotFoundException:NoActivityfoundtohandleIntent { act=android.settings.WIFI_DISPLAY_SETTINGS }
onCreateXT1706

Post a Comment for "Android Intent Not Work For Wifi,sound,bluetooth?"