My first day with creating android app and I am stuck. I have followed the steps to create the webview by android studio. However after countless hours, I am still not able to create webview app. The application stops in the emulator even before loading and displays error: "Unfortunately the application has stopped".
Any help will is appreciated. My files are below:
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="myApp2.com.example.myapplication2.myapp2">
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="myApp2.com.example.myapplication2.myapp2.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="android.permission.INTERNET" />
activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="myApp2.com.example.myapplication2.myapp2.MainActivity">
<WebView
android:id="@+id/activity_main_webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
MainActivity.java:
package myApp2.com.example.myapplication2.myapp2;
import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.webkit.WebSettings;
import android.webkit.WebView;
public class MainActivity extends ActionBarActivity {
private WebView mWebView;
@Override
protected void onCreate(Bundle savedInstanceState) {
mWebView = (WebView) findViewById(R.id.activity_main_webview);
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mWebView.loadUrl("http://beta.html5test.com/");
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
Logcat:
03-15 13:44:56.652 1995-1995/myApp2.com.example.myapplication2.myapp2 D/dalvikvm﹕ Not late-enabling CheckJNI (already on)
03-15 13:45:01.042 1995-1995/myApp2.com.example.myapplication2.myapp2 W/ActivityThread﹕ Application myApp2.com.example.myapplication2.myapp2 is waiting for the debugger on port 8100...
03-15 13:45:01.112 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ Sending WAIT chunk
03-15 13:45:01.162 1995-2001/myApp2.com.example.myapplication2.myapp2 I/dalvikvm﹕ Debugger is active
03-15 13:45:01.322 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ Debugger has connected
03-15 13:45:01.332 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:01.572 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:01.772 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:01.982 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:02.202 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:02.522 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:02.762 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:02.992 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:03.212 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:03.402 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:03.622 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:03.832 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:04.062 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:04.292 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:04.532 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:04.742 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:04.992 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:05.192 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ waiting for debugger to settle...
03-15 13:45:05.532 1995-1995/myApp2.com.example.myapplication2.myapp2 I/System.out﹕ debugger has settled (1509)
03-15 13:45:12.782 1995-1995/myApp2.com.example.myapplication2.myapp2 D/AndroidRuntime﹕ Shutting down VM
03-15 13:45:12.862 1995-1995/myApp2.com.example.myapplication2.myapp2 W/dalvikvm﹕ threadid=1: thread exiting with uncaught exception (group=0xb3aa7ba8)
03-15 13:45:14.102 1995-1995/myApp2.com.example.myapplication2.myapp2 E/AndroidRuntime﹕ FATAL EXCEPTION: main
Process: myApp2.com.example.myapplication2.myapp2, PID: 1995
java.lang.RuntimeException: Unable to start activity ComponentInfo{myApp2.com.example.myapplication2.myapp2/myApp2.com.example.myapplication2.myapp2.MainActivity}: java.lang.NullPointerException
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2195)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
at android.app.ActivityThread.access$800(ActivityThread.java:135)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5017)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at myApp2.com.example.myapplication2.myapp2.MainActivity.onCreate(MainActivity.java:15)
at android.app.Activity.performCreate(Activity.java:5231)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2159)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
at android.app.ActivityThread.access$800(ActivityThread.java:135)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
at android.os.Handler.dispatchMessage(Handler.java:102)
at android.os.Looper.loop(Looper.java:136)
at android.app.ActivityThread.main(ActivityThread.java:5017)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:515)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
at dalvik.system.NativeStart.main(Native Method)
Hey i have managed to make it work. Just rearrange your code a bit as follows onCreate() :-
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mWebView = (WebView) findViewById(R.id.activity_main_webview);
WebSettings webSettings = mWebView.getSettings();
webSettings.setJavaScriptEnabled(true);
mWebView.loadUrl("http://beta.html5test.com/");
}
Android Manifest File :-
write your permission before <application>
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="myApp2.com.example.myapplication2.myapp2.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Try this code:
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.getSettings().setJavaScriptEnabled(true);
webView.setWebViewClient(new WebViewClient());
webView.loadUrl("http://google.com");
// If you deal with HTML then execute loadData instead of loadUrl
//webView.loadData("YOUR HTML CONTENT","text/html", "UTF-8");
}
You have to set WebView in layout and define it with Id
Don't forget permission in manifests.
MainActivity.Java
package com.jtech.webviewapp;
import androidx.appcompat.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebSettings;
import android.webkit.WebView;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView webView=(WebView) findViewById(R.id.wb);
WebSettings webSettings=webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webView.loadUrl("https://stackoverflow.com/");
}}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With