Skip to content

Instantly share code, notes, and snippets.

@codinginflow
Created March 5, 2021 18:23
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 6 You must be signed in to fork a gist
  • Save codinginflow/d7eb3aa5b34036f9fdecbc3575bdd316 to your computer and use it in GitHub Desktop.
Save codinginflow/d7eb3aa5b34036f9fdecbc3575bdd316 to your computer and use it in GitHub Desktop.
WebView Tutorial
<?xml version="1.0" encoding="utf-8"?>
<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"
tools:context="com.example.application.webviewapp.MainActivity">
<WebView
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.application.webviewapp">
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
package com.example.application.webviewapp;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends AppCompatActivity {
private WebView webView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
webView = (WebView) findViewById(R.id.webview);
webView.setWebViewClient(new WebViewClient());
webView.loadUrl("http://www.google.com");
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
}
@Override
public void onBackPressed() {
if (webView.canGoBack()) {
webView.goBack();
} else {
super.onBackPressed();
}
}
}
@AlbertoSoliman
Copy link

Thank you

@KomiljonTurayev
Copy link

Thank u. U are best.

@Hashmat9696
Copy link

thank u sir

@NykytaAvramenko
Copy link

THANK YOU)

@AdyStudios
Copy link

Thanks!

@MUISHA
Copy link

MUISHA commented Aug 2, 2021

thx for this links

@pratikdhoriyani
Copy link

Thank You so much...

@serocool17
Copy link

thank you it works great the only thing I would like to make as a contribution is that sometimes you need to modify the activity:

<activity android:name=".MainActivity" android:exported="true"> adding this part: android:exported="true" on the android manifest

@relwen
Copy link

relwen commented Oct 13, 2022

you don't use android:usesCleartextTraffic="true" ?

@moussasa
Copy link

moussasa commented Jun 5, 2023

thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment