3

Possible Duplicate:
How I can Enable Usb Tethering programatically on 4.0?

How can I enable USB tethering on an Android 4.0 device with my application?

Community
  • 1
  • 1
Gaurav Gupta
  • 575
  • 1
  • 5
  • 17
  • Similar question: http://stackoverflow.com/questions/9913645/android-enable-usb-tethering-programatically-there-is-an-app-that-did-it-for – Harry Joy Aug 23 '12 at 05:39

1 Answers1

0

you can call a intent depending on your requirement... startActivity(new Intent(android.provider.Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS));... which takes you to the usb settings page

aravind varma
  • 90
  • 5
  • 13