logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • How can your application perform actions that are provided by other application e.g. sending email?


  • Correct Answer
  • Intents are created to define an action that we want to perform and the launches the appropriate activity from another application Code Intent intent = new Intent(IntentACTION_SEND); intentputExtra(IntentEXTRA_EMAIL, recipientArray); startActivity(intent); 


  • Technology problems


    Search Results


    • 1. Write code snippet to retrieve IMEI number of Android phone?
    • Discuss
    • 2. How does an application run in isolation from other applications?
    • Discuss
    • 3. Why cannot you run standard Java bytecode on Android?
    • Discuss
    • 4. How to select more than one option from list in android xml file? Give an example.
    • Discuss
    • 5. Describe Android Application Architecture.
    • Discuss
    • 6. How will you launch an Activity within you application?
    • Discuss
    • 7. Whats a struct?
    • Discuss
    • 8. Whats the difference between a NSArray and a NSMutableArray?
    • Discuss
    • 9. If I call performSelector:withObject:afterDelay: ? is the object retained?
    • Discuss
    • 10. Explain the correct way to manage Outlets memory?
    • Discuss


    Comments

    There are no comments.

Enter a new Comment