My Blog List

Tuesday 9 October 2012

PayPal Integration ,Azure Cloud Storage Accees

Upcoming blogs


1   PayPal Integration (  iPhone/Android)
2.  Azure blob storage access api integration in Iphone
soon....




Friday 5 October 2012

Accessing Settings in Android

Hi folks,
Another post related to android settings.Sometime you need to access underlying phone settings ,for example suppose your android device is not connected to wireless network,it would be very useful to the user if you provide option where user can directly check his/her network connectivity without quitting existing application.below is the example of Skype android application




So here is the solution through which you can acces  Each and every settings in android
Android ships with no of Constants  in android.provider.Settings class.
for constants description take a look on  http://developer.android.com/reference/android/provider/Settings.html.


Step 1. initialize intent with one of settings action
      Intent i=new Intent(Settings.ACTION_WIRELESS_SETTINGS);

Step 2. start Activity with above intent
        startActivity(i);


or  simply
startActivity(new Intent(Settings.ACTION_WIRELESS_SETTINGS));

That's all 
like wise you can use each and every settings action 

Thank you