Software Engineering

Android Application Development Tips: Disabling scrollbars for WebView

Scrollbars for a WebView can be easily disabled from XML using the scrollbars attribute.

<WebView
	android:layout_height="wrap_content"
	android:layout_width="wrap_content"
	android:scrollbars="none"
	/>