Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WebView in Dialog

I have an application where I need to load a small webpage inside of webview. The webview needs to load up inside a dialog. I've tried to implement it; but everytime an empty dialog loads up and seems to have no content inside it. The code i've used is below

Uri uri = Uri.parse(item.getLink());
Dialog dialog = new Dialog(this);
LayoutInflater inflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View v = inflater.inflate(R.layout.webviewdialog, null);
dialog.setContentView(v);
dialog.setCancelable(true);
WebView wb = (WebView) v.findViewById(R.id.webView1);
wb.loadUrl(uri.toString());
dialog.show();

I've also tried putting in urls directly inside loadUrl, but I get the same issue.

like image 317
Avinash Avatar asked Oct 15 '12 02:10

Avinash


1 Answers

Try this:

    WebView webView = new WebView(this);
    webView.loadUrl("http://www.google.com/");
    AlertDialog.Builder dialog = new AlertDialog.Builder(this);
    dialog.setView(webView);
    dialog.setPositiveButton("Okay", null);
    dialog.show();
like image 64
James McCracken Avatar answered Oct 01 '22 15:10

James McCracken