i'm using twitter api in my android application In this when i login into twitter first time only my twitter url loading in the webview when i try to share image second time the url is not loading webview shows as blank.
private void setUpWebView(String murl) {
mWebView = new WebView(getContext());
mWebView.setVerticalScrollBarEnabled(false);
mWebView.setHorizontalScrollBarEnabled(false);
mWebView.setWebViewClient(new TwitterWebViewClient());
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setDomStorageEnabled(true);
System.out.println("Url is ---->" + murl);
mWebView.setVisibility(View.VISIBLE);
mWebView.loadUrl(murl);
mWebView.requestFocus();
System.out.println("URL Finished");
mWebView.setLayoutParams(FILL);
mContent.addView(mWebView);
}
in the above the murl i can get different access token to share the image at second time but that url is not loading in the the web view what mistake i did.