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?
Correct Answer: TelephonyManager class can be used to get the IMEI number It provides access to information about the telephony services on the device Code TelephonyManager mTelephonyMgr = (TelephonyManager) getSystemService(ContextTELEPHONY_SERVICE); String imei = mTelephonyMgrgetDeviceId();
2. How does an application run in isolation from other applications?
Correct Answer: Each application gets its own Linux user ID and virtual machine which means that the application code runs in isolation from other applications
3. Why cannot you run standard Java bytecode on Android?
Correct Answer: Android uses Dalvik Virtual Machine (DVM) which requires a special bytecode We need to convert Java class files into Dalvik Executable files using an Android tool called "dx" In normal circumstances, developers will not be using this tool directly and build tools will care for the generation of DVM compatible files
4. How to select more than one option from list in android xml file? Give an example.
Correct Answer: Android Application Architecture has the following components: > Services - like Network Operation > Intent - To perform inter-communication between activities or services > Resource Externalization - such as strings and graphics > Notification signaling users - light, sound, icon, notification, dialog etc > Content Providers - They share data between applications
6. How will you launch an Activity within you application?
Correct Answer: For launching an application, we will need to create an intent that explicitly defines the activity that we wish to start For example: Code Intent intent = new Intent(this, MyTestActivityclass); startActivity(intent);
Correct Answer: A NSArray?s contents can not be modified once it?s been created whereas a NSMutableArray can be modified as needed, ie items can be added/removed from it
9. If I call performSelector:withObject:afterDelay: ? is the object retained?
Correct Answer: Yes the object is retained It creates a timer that calls a selector on the current threads run loop It may not be 100% precise time-wise as it attempts to dequeue the message from the run loop and perform the selector
10. Explain the correct way to manage Outlets memory?
Correct Answer: Create them as properties in the header that are retained In the viewDidUnload set the outlets to nil(ie selfoutlet = nil) Finally in dealloc make sure to release the outlet