What is the difference between a regular bitmap and a nine-patch image?
Correct Answer
In general, a Nine-patch image allows resizing that can be used as background or other image size requirements for the target device The Nine-patch refers to the way you can resize the image: 4 corners that are unscaled, 4 edges that are scaled in 1 axis, and the middle one that can be scaled into both axes
Correct Answer: Because every component needs to indicate which intents they can respond to, intent filters are used to filter out intents that these components are willing to receive One or more intent filters are possible, depending on the services and activities that is going to make use of it
Correct Answer: The Google Android SDK is a toolset that developers need in order to write apps on Android enabled devices It contains a graphical interface that emulates an Android driven handheld environment, allowing them to test and debug their codes
3. What is the proper way of setting up an Android-powered device for app development?
Correct Answer: The following are steps to be followed prior to actual application development in an Android-powered device: - Declare your application as ?debuggable? in your Android Manifest - Turn on ?USB Debugging? on your device - Set up your system to detect your device
Correct Answer: Testing an executable application for portability across system platforms and environments, usually for conformation to an ABI specification
Correct Answer: 1) List down usecases (taken from business cases) from function specs For each use case write a test case and categorize them into sanity tests, functionality, GUI, performance etc Then for each test case, write its workflow 2) For a GUI application - make a list of all GUI controls For each control start writing test cases for testing of the control UI, functionality (impact on the whole application), negative testing (for incorrect inputs), performance etc
6. When is the best time to kill a foreground activity?
Correct Answer: The foreground activity, being the most important among the other states, is only killed or terminated as a last resort, especially if it is already consuming too much memory When a memory paging state has been reach by a foreground activity, then it is killed so that the user interface can retain its responsiveness to the user
7. Is it possible to use or add a fragment without using a user interface?
Correct Answer: Yes, it is possible to do that, such as when you want to create a background behavior for a particular activity You can do this by using add(Fragment,string) method to add a fragment from the activity
Correct Answer: A call to onStop method happens when an activity is no longer visible to the user, either because another activity has taken over or if in front of that activity
Correct Answer: - Notification messages to the user from an Android enabled device can be displayed using Intents - There are two types of Intents - Explicit Intent, Implicit Intent Implicit Intent: - In case of Implicit Intent, an intent is just declared - It is for the platform to find an activity that can respond to it - Since the target component is not declared, it is used for activating components of other applications Explicit Intent - Explicit intent specifies the particular activity that should respond to the intent - They are used for application internal messages
10. What is AIDL?What data types are supported by AIDL?
Correct Answer: - AIDL is the abbreviation for Android Interface Definition Language - It handles the interface requirements between a client and a service to communicate at the same level through interprocess communication - The process involves breaking down objects into primitives that are Android understandable AIDL supports following data types: - String - List - Map - CharSequence - All native Java data types like int,long, char and Boolean