- Home
- Archives
Android – Retrieve Device’s SDK version and API level
Ques:How do i fetch device’s SDK version and API level number? Ans: Build.VERSION.SDK_INT => To know API Level number i.e. 7,8,9 Build.VERSION.RELEASE => To know version code i.e. 2.1, 2.2, 2.3, 3.0 For your info, // SDK_INT is only available in 1.6 and in newer // REALEASE works on every version released so far. For […]
-
Paresh Mayani
- June 7, 2011
Android – Sending SMS from android application – Method 1
Today I am going to discuss about to send SMS from your android application. Basically there are 2 ways by which we can send sms: Open native SMS composer write your message and send from your android application So here I am going to write about the 1st method i.e. Open native SMS Composer. (For […]
-
Paresh Mayani
- June 7, 2011
Android – Sending SMS from android application – Method 2
Hi, Here i am going to discuss about to send SMS from your android application. Basically there are 2 ways by which we can send sms: Open native SMS composer write your message and send from your android application
-
Paresh Mayani
- June 7, 2011
Mobile Trick – Disable Data connection
Hi, Did you ever suffer from unwanted charges charged for unwanted data connection, then here is solution for you to “Disable data connection” from your mobile phone. Just follow the below steps: 1. Type *#*#4636*#*# 2. Now you have a list of options available in your screen regarding : phone information, battery information, battery history, […]
-
Paresh Mayani
- June 7, 2011
Android – Send object from one activity to another Activity using Intent
Here is a simple example about how to pass custom class object from one activity to another activity. To pass an object, your custom class object must be serialized, to do so just implement the Serializable interface. For example: Now To pass the object of Student class From Activity ‘A’ to activity ‘B’: To retrieve […]
-
Paresh Mayani
- June 6, 2011
Android – EditText TextWatcher
Today we are going to discuss about TextWatcher which can be implemented in EditText. What is TextWatcher It is an Interface. It has 3 methods to be overrided whenever it is implemented: afterTextChanged beforeTextChanged onTextChanged It is used to keep watch on EditText while entering data into it. We can perform operation and keep watch […]
-
Paresh Mayani
- June 5, 2011
Android – What is AsyncTask?
I am going to discuss about AsyncTask. Do you know about AsyncTask and what are the usage of it? Here are some of the points: AsyncTask enables proper and easy use of the UI thread. AsyncTask is used when you want to perform long awaited task in background. AsyncTask publish result on the UI thread(display […]
-
Paresh Mayani
- June 5, 2011
Search
Explore Topics
Short Stories
From Payroll to People: The Evolution of
- 7 min read
How to Host a Web App :
- 6 min read
Why Hiring a Flutter Developer is the
- 10 min read