best how-to tutorials, how to step by step tutorials,

Subscribe Us

Sunday, June 21, 2020

How To Convert Any Website Into an Android App Free Using ANDROID STUDIO

Convert Website Into Android App

<uses-permission  android:name="android.permission.INTERNET"></uses-permission>
android:id="@+id/webview"
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
private WebView mywebView;
 mywebView=(WebView) findViewById(R.id.webview);
 mywebView.setWebViewClient(new WebViewClient());
 mywebView.loadUrl("https://techproadvice.blogspot.com/");
 WebSettings webSettings=mywebView.getSettings();
 webSettings.setJavaScriptEnabled(true);

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();
            }
}
How to Perform ‘Hajj and Umrah

1 comment:

  1. I managed to turn my web app into an android app and it was dealing with a chat system, now I was looking for help for anyone who knows the receipt codes for each of the sender's messages to be in the notification system

    ReplyDelete

Post Top Ad

Your Ad Spot

Pages

SoraTemplates

Best Free and Premium Blogger Templates Provider.

Buy This Template