Home LearnHow to convert a website into an app using android studio 2021

How to convert a website into an app using android studio 2021

by Thando Gama
How to convert a website into an app using android studio 2021
Spread the love

How to convert a website into an app using android studio 2021

This code goes to

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.businessinthebox">
    <uses-permission  android:name="android.permission.INTERNET"></uses-permission>

    <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/Theme.BusinessInTheBox">
        <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>

This code goes to

MainActivity.java
package com.example.businessinthebox;

import androidx.appcompat.app.AppCompatActivity;

import android.graphics.Bitmap;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends AppCompatActivity {
    private WebView mywebview;



    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        // We put the code to do the job
        mywebview=(WebView) findViewById(R.id.webview);
        mywebview.setWebViewClient(new WebViewClient());
        mywebview.loadUrl("https://googleboy.co.za/");
        WebSettings webSettings=mywebview.getSettings();
        webSettings.setJavaScriptEnabled(true);

        // Code ends here Mpumalanga
    }
    
    // more code 

    public class mywebClient extends WebViewClient{
        @Override
        public void onPageStarted(WebView view, String url, Bitmap favicon){
            super.onPageStarted(view,url,favicon);
        }
        @Override
        public boolean shouldOverrideUrlLoading(WebView view,String url){
            view.loadUrl(url);
            return true;
        }
    }
    @Override
    public void onBackPressed(){
        if(mywebview.canGoBack()) {
            mywebview.goBack();
        }
        else{
            super.onBackPressed();
        }
    }


}

You can watch the video to see how we did it

Related Articles

Leave a Comment