I'm building an app with webview. When I'm trying to reload the webview I'm getting an error.
Error:
java.lang.NullPointerException: Attempt to invoke virtual method 'android.content.Context android.content.Context.getApplicationContext()' on a null object reference
    at android.content.ContextWrapper.getApplicationContext(ContextWrapper.java:117)
    at in.bongtech.apps.bongtechlite.MainActivity.reLoad(MainActivity.java:118)
    at in.bongtech.apps.bongtechlite.HandleWebview$1.onClick(HandleWebview.java:30)
    at com.android.internal.app.AlertController$ButtonHandler.handleMessage(AlertController.java:163)
    at android.os.Handler.dispatchMessage(Handler.java:102)
    at android.os.Looper.loop(Looper.java:157)
    at android.app.ActivityThread.main(ActivityThread.java:5613)
    at java.lang.reflect.Method.invoke(Native Method)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:774)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:652)
MainActivity.java
public class MainActivity extends AppCompatActivity {
private WebView content;
private String url;
String appCachePath;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    appCachePath = this.getCacheDir().getAbsolutePath();
    content = (WebView) findViewById(R.id.content);
    content.setWebViewClient(new HandleWebview());
    content.loadUrl("https://www.example.com");
    WebSettings webViewSettings = content.getSettings();
    webViewSettings.setJavaScriptEnabled(true);
    webViewSettings.setDomStorageEnabled(true);
    webViewSettings.setAppCacheEnabled(true);
    webViewSettings.setAppCachePath(appCachePath);
    url = content.getUrl();
}
public void reLoad(){
    content.reload();
}}
HandleWebview.java
public class HandleWebview extends WebViewClient {
MainActivity activity = new MainActivity();
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
    if (Uri.parse(url).getHost().contains("www.example.com")) {
        // This is my website, so do not override; let my WebView load the page
        return false;
    }
    // Otherwise, the link is not for a page on my site, so launch another Activity that handles URLs
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
    view.getContext().startActivity(intent);
    return true;
}
public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
    AlertDialog.Builder builder = new AlertDialog.Builder(view.getContext());
    builder.setMessage(R.string.errorMessage).setTitle("Error");
    builder.setPositiveButton("Retry", new DialogInterface.OnClickListener() {
        @Override
        public void onClick(DialogInterface dialog, int id) {
            activity.reLoad();
        }
    });
    builder.setNegativeButton("Dismiss", new DialogInterface.OnClickListener() {
        public void onClick(DialogInterface dialog, int id) {
            dialog.cancel();
        }
    });
    builder.create();
    builder.show();
}}
When I'm pressing the RETRY button on the Alert Dialog I'm getting the error mentioned above. I'm calling the reLoad() method of MainActivity from the alert of HandleWebview.java file. I know AlertDialog.Builder builder = new AlertDialog.Builder(view.getContext()); is producing this error. But don't know how to solve the error. Please help. Please tell me how to call a method inside MainActivity from a dialogue's positive response, which is inside a basic Java class.
 
    