Android Software Development Learning
1. What is Android?
- Android is a robotic operating system which is used in smartphones, tablets, televisions, vehicles, (used in all electronic devices).
2. What is Android Software Development?
- Android Software Development means developing applications for electronic devices having android operating system.
3. What are the benefits of Android?
- Android applications are easy to use and have good looking user friendly interface with optimized performance.
- Development of android applications is becoming easy and quick day by day.
4. How to develop an Android App?
- Download and Install Android Studio from https://developer.android.com/ in your computer system to start developing apps.
5. How to send a SMS message in an Android App?
- Write the given code in onClick button event and manifest file.
- SmsManager smsManager = SmsManager.getDefault();
- smsManager.sendTextMessage("phoneNo", "sms message");
- Intent sendIntent = new Intent(Intent.ACTION_VIEW);
- sendIntent.putExtra("sms_body", "default content");
- sendIntent.setType("vnd.android-dir/mms-sms");
- startActivity(sendIntent);
- <uses-permission android:name="android.permission.SEND_SMS" />
Comments