Multiple choice technology platforms and products

The following Android Widget helps you to get access to Web Browser.

  1. WebkitView

  2. MapView

  3. WebView

  4. SurfaceView

  5. None of above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

WebView is the correct Android widget for displaying web content within your application. It uses the WebKit rendering engine and provides methods for navigation, JavaScript execution, and webpage loading. WebkitView is not a standard Android widget class.

AI explanation

WebView is the Android widget that embeds a web browser (based on the WebKit/Chromium rendering engine) directly inside an app, letting you display and navigate web pages without leaving the application. 'WebkitView' is a distractor — no such class exists; WebView is what actually wraps WebKit. MapView is for displaying Google Maps content, not general web browsing. SurfaceView is a low-level view for direct drawing/rendering (e.g., video, games), unrelated to web content. 'None of above' is wrong since WebView is the correct, real Android API class.