Android FAQ
Tuesday, April 24, 2012
How to use TimerTask in Android?
›
public class Test extends Activity { /** Called when the activity is first created. */ Timer myTimer=null; @Override pub...
Friday, April 20, 2012
How to open URL in browser in Android?
›
Intent i = new Intent(Intent.ACTION_VIEW); i.setData(Uri.parse(url.toString().trim())); startActivity(i);
How to send email in Android?
›
Intent sendIntent = new Intent(Intent.ACTION_SEND); // Set Address for Email sendIntent.putExtra(Intent.EXTRA_EMAIL, mailto); ...
Monday, April 2, 2012
How to find the Version of the app in Android?
›
PackageManager pm = getPackageManager(); PackageInfo packageInfo = pm.getPackageInfo(this.getPackageName(), 0); System.out.pr...
Monday, March 26, 2012
How to send/receive SMS in android?
›
Good Link : http://mobiforge.com/developing/story/sms-messaging-android
Saturday, March 24, 2012
How to know when TTS is finished in Android?
›
public class TTSActivity extends Activity implements OnInitListener, OnUtteranceCompletedListener, ... { private TextToSpeech mTts; ........
Tuesday, March 20, 2012
How to read contacts on Android ?
›
First, ensure that you have added android.permission.READ_CONTACTS to your AndroidManifest.xml file, then you can loop through your phone ...
›
Home
View web version