Android

  Home  Mobile Technologies  Android


“Android frequently Asked Questions in various Android job Interviews by interviewer. The set of Android interview questions here ensures that you offer a perfect answer to the interview questions posed to you. Get preparation of Android job interview”



62 Android Questions And Answers

61⟩ Define the sending SMS in android?

SMS messaging is one of the basic and important applications on a mobile phone. Now days every mobile phone has SMS messaging capabilities, and nearly all users of any age know how to send and receive such messages. Mobile phones come with a built-in SMS application that enables you to send and receive SMS messages.

 207 views

62⟩ Describe the android activities?

Activity provides the user interface. When you create an android application in eclipse through the wizard it asks you the name of the activity. Default name is MainActivity. You can provide any name according to the need. Basically it is a class (MainActivity) that is inherited automatically from Activity class. Mostly, applications have oneor more activities; and the main purpose of an activity is to interact with the user. Activity goes through a numberof stages, known as an activity's life cycle.

 208 views