Skip to content

Instantly share code, notes, and snippets.

@saurabhalang
Last active August 29, 2015 14:24
Show Gist options
  • Select an option

  • Save saurabhalang/3ed6ad0b313775204b32 to your computer and use it in GitHub Desktop.

Select an option

Save saurabhalang/3ed6ad0b313775204b32 to your computer and use it in GitHub Desktop.
How to convert any Website into Android App in Android Studio?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<WebView
android:id="@+id/webView"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</RelativeLayout>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment