package com.example.htmlfiles; import android.os.Bundle; import android.webkit.WebView; import androidx.appcompat.app.AppCompatActivity; // You need to add the assets folder by // Right-click on app folder go to New -> Directory -> // select /src/main/assets to add the folder // Copy your HTML, JS and oher web files into tht folder public class MainActivity extends AppCompatActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); WebView webView = findViewById(R.id.webView); webView.loadUrl("file:///android_asset/home.html"); } }