Click here to Skip to main content
15,899,825 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
heyy...


by using intent how we got mobile network setting page through in android
Posted

1 solution

You can use following code.
Java
Intent intent = new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS);
startActivity(intent);

Other values for the SETTINGS can be found [HERE].

Cheers,
Sudhakar
 
Share this answer
 
Comments
aravindnass 28-Mar-13 7:27am    
thanks for answering ,but I want to access inside wireless&network setting -> Mobile network setting page ..
Sudhakar Shinde 28-Mar-13 8:54am    
Please try and read the link provided for the settings? It will give you answer to your question.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900