Skip to content Skip to sidebar Skip to footer

How To Open OTG Connection Settings

I am working with usb device connection, in some devices like Oppo F1s OTG connection is disabled from settings. Check below screen shot as reference I want to know: 1) How to c

Solution 1:

I dont know if you are still interested, but I had a similar problem. Unfortunately I only found a workarround. In my case the NFC-Switch is on the same page as the OTG-Switch. So I started an Intent to open the specific Settings-page:

Intent i = new Intent(Settings.ACTION_NFC_SETTINGS); 
startActivity(i);

Maybe there is something like this possible for your case, too :)


Post a Comment for "How To Open OTG Connection Settings"