Showing posts with label Android. Show all posts
Showing posts with label Android. Show all posts

Thursday, February 18, 2016

Create webviev android app

Convert any website with android app


In Main_Activity.xml add this code :

<?xml version="1.0" encoding="utf-8"?>
<WebView  xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
/>

WebView link click open default browser

Inside my activity add this line of code

Uri uri = Uri.parse("http://www.example.com");
 Intent intent = new Intent(Intent.ACTION_VIEW, uri);
 startActivity(intent);
this.finish();
Namecheap.com