| Exam Code/Number: | AND-401Join the discussion |
| Exam Name: | Android Application Development |
| Certification: | Android |
| Question Number: | 130 |
| Publish Date: | Jan 02, 2026 |
|
Rating
100%
|
|
Which of the following Activity methods is invoked when the user clicks on an options menu item?
Consider the following AndroidManifest.xml file:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.mkyong.android" android:versionCode="1" android:versionName="1.0" >
<uses-sdk android:minSdkVersion="10" />
<uses-permission android:name="android.permission.WebActivity " />
<application android:icon="@drawable/ic_launcher" android:label="@string/app_name" >
<activity android:name=".WebViewActivity" android:theme="@android:style/Theme.NoTitleBar" >
<intent-filter >
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
Supposing the application connects to the internet at startup, which of the following is true?
Which of the following is true about attribute android:windowSoftInputMode of the <activity> tag in file
AndroidManifest.xml?