问题在对话框中加载webview

时间:2014-08-25 03:44:52

标签: android dialog android-webview

我正在尝试在对话框中加载webview。但是webview永远不会显示。我已将html文件存储在raw文件夹中。我只得到一个有标题的对话框。任何建议都会有所帮助。

public class MainActivity extends Activity
 {
    String linewise="";
    final Context context=this;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main); 

    Button button=(Button)findViewById(R.id.button);    


    button.setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {
            // TODO Auto-generated method stub
            final Dialog dialog=new Dialog(context);
            dialog.setContentView(R.layout.dialog_webview);
            dialog.setTitle("WebView");

            WebView webview=(WebView)dialog.findViewById(R.id.webview);
            webview.getSettings().setJavaScriptEnabled(true);
            webview.loadUrl("file:///android_res/raw/abc.htm"); 
            dialog.show();  


        }


    });
    }   

}

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <WebView 
        android:id="@+id/webview"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

这是我在内部加载webview的代码,它对我来说很好用。 把你的html文件放在assets文件夹中。

         AlertDialog.Builder alert = new AlertDialog.Builder(MainActivity.this); 
         alert.setTitle("Title here");

            WebView wv = new WebView(MainActivity.this);
            wv.getSettings().setJavaScriptEnabled(true);
            wv.loadUrl("file:///android_asset/myhtml.html");
            alert.setView(wv);
            alert.setNegativeButton("Close",new DialogInterface.OnClickListener() {

            @Override
            public void onClick(DialogInterface dialog, int which) {
                // TODO Auto-generated method stub
                dialog.dismiss();
            }
        });


         alert.show();

请接受&amp;尝试这个code.it绝对适合你。

答案 1 :(得分:0)

将布局高度更改为wrap_content修复它。