Questions
_________ Attribute is used to enable app to be moved to SDCard.
- AllowBackup
- Autoinstall
- AllowMove
- None of above
How to make an Activity to single Instance?
- Using Multiprocess attribute in Manifest file
- Using LaunchMode attribute in Manifest file
- Using TaskAffinity attribute in Manifest file
- None of above
________ Attribute sets the style of the app.
- Style
- Theme
- ConfigChanges
- None of above
________ Method returns SDCard location.
- Environment.getExternalStoragePath()
- Environment.getExternalStorageState()
- Environment.getExternalStorageDirectory()
- None of above
________ Permission is required to access external storage.
- WRITE_EXTERNAL_STORAGE
- READ_EXTERNAL_STORAGE
- Both Op1 and Op2
- As per requirement, any of Op1 or Op2
How to show ‘Next’, ‘Done’ etc buttons in default keyboard?
- Use inputMethod
- Use imeActionLabel
- Use ImeOptions
- Not possible
How to make default keyboard not to overlap layout?
- windowSoftInputMode="stateUnchanged"
- windowSoftInputMode="stateVisible"
- windowSoftInputMode="adjustResize"
- windowSoftInputMode="adjustPan"
__________ is used to create custom adapter for ListView.
- ListAdapter
- BaseAdapter
- CustomAdapter
- None of above
Can we change network selection 2G/3G/4G in our App, if device is not rooted?
- Yes
- No
- Don’t know
- Not applicable
What is Android’s preferred image scaling ratio to support multiple devices?
- 1:2:4:8:16:32
- 2:4:6:8:10:12
- 3:4:6:8:12:16
- None of above
Can we create our own keyboard, if the device is not rooted?
- Yes
- No
- Don’t know
- Not applicable
New Intent(Intent.ACTION_VIEW,Uri); is an _____
- Explicit Intent
- Implicit Intent
- Special Intent
- None of above
________ are used to share your data with other applications.
- Service
- Intents
- Content Provider
- Activity
UserDictionary has data about _________
- Device Users
- Login Information
- Words added by user
- Language words
_______ Class has methods to access and manage Content Provider data.
- ContentProvider
- ContentResolver
- AccessProvider
- None of above