Skip to content

Instantly share code, notes, and snippets.

@hndr91
Last active October 3, 2015 10:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hndr91/abff5aa49ca16de4c866 to your computer and use it in GitHub Desktop.
Save hndr91/abff5aa49ca16de4c866 to your computer and use it in GitHub Desktop.
Simple Android WebView - activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="4dp"
tools:context=".MainActivity">
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="true"></WebView>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment