Categories: ANDROID APP

Use WebView to Convert any website into Android App | Android studio tutorial ..



in this android studio tutorial we will how to use WebView to Convert website into android app ..

//////////////////////////////////////////////////////////////////////////////////////////////
java file :-

package com.example.gaurang.website;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class MainActivity extends AppCompatActivity {
private WebView website;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

website=findViewById(R.id.website);

website.loadUrl(“https://www.apple.com/imac/”);
website.setWebViewClient(new WebViewClient());

}

@Override
public void onBackPressed() {
if (website.canGoBack()) {
website.goBack();
} else {
super.onBackPressed();
}
}
}

/////////////////////////////////////////////////////////////////////////////////////////////

permission to be given in Android_Menifest file :-

uses-permission android:name=”android.permission.INTERNET”

#convert_website_into_android_app
#website_to_app
#webview in android studio

source

linda

Recent Posts

More Than Firecrackers

Now, firecrackers might be the first thing that pops into your head when you hear…

1 day ago

A Day in the Life of Yee Haul Dumpsters Fort Collins Keeping Our Community Clean and Green

Every day, as the sun rises over the picturesque city of Fort Collins, a dedicated…

2 days ago

The Importance of Precision Mold Parts

Precision mold parts are indispensable in production processes that demand precise dimensions. Their increased durability,…

2 days ago

Hire a Boat in Malta

Boat rentals provide the ideal way to explore Malta's breathtaking beaches and waters, including hidden…

3 days ago

Enhancing Grain Quality: The Indispensable Wheat Cleaning Machine

Introduction In the agricultural sector, the quality of wheat directly influences the quality of the…

5 days ago

Real Estate SEO Services

Real estate SEO services can help your real estate company attract local leads by increasing…

5 days ago