Android SDK Manager does not open in windows 8
I have installed windows 8 in my laptop and tried to open ‘Android SDK Manager’. It was not open. By googling I found the solution as below. Go to android-sdk folder what you had set path…
Read MorePassion is not a logic; it's an emotion.
I have installed windows 8 in my laptop and tried to open ‘Android SDK Manager’. It was not open. By googling I found the solution as below. Go to android-sdk folder what you had set path…
Read More
HttpClient httpclient; HttpPost httppost; HttpResponse response; httppost = new HttpPost(“website-url-goes-here”); try { response = httpclient.execute(httppost); HttpEntity entity1 = response.getEntity(); InputStream is = entity1.getContent(); String w1url = convertStreamToString(is); } catch (ClientProtocolException e1) { // TODO Auto-generated catch…
Read More
At the Google IO 2012, the beta version of Android push notifications system called C2DM was replaced by Google Cloud Messaging (GCM). GCM has many new features over the existing system. Refer to this document for…
Read More
http://ubaid.tk/api-usage/ Required Params : uid, pwd, phone, msg. uid : your userid for the required sms provider pwd : your password for the required sms provider provider : way2sms(default), fullonsms, smsindia, whozzat, smsinside, site2sms. if you…
Read More
Documentation for each api Documetation For Each API Search PLACE API code CREATE API KEY
Read More
protected void alertbox(String title, String mymessage) { new AlertDialog.Builder(this) .setMessage(mymessage) .setTitle(title) .setCancelable(true) .setNeutralButton(android.R.string.cancel, new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int whichButton){} }) .show(); } For more details see below link… http://huuah.com/dialog-boxes-in-android/
Read More
First of all you have understand what is jsonObject and jsonObjectArray. ex. of jsonObject { “Validate”: “true” } if string start with “{” then it’s a only a object. [ { “Validate”: “true” } ] if…
Read More
First of all give internet permission to app for that below steps. 1. Open “AndroidManifest.xml” file. 2. Copy below code under Now make one function which is consume web service. public String doRequest(String requestURL) { InputStream…
Read More