在webView上加载Url后显示对话框

时间:2016-03-31 12:20:16

标签: android android-activity webview

我有一个对话框活动,上面有webview。我想显示对话框只有在webview完全加载Url后。是否可以在显示对话框之前将URL加载到webview中 我正在尝试下面的代码。 这是我的对话活动

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center_vertical"
android:gravity="center"
android:orientation="vertical"
android:background="#00FFFFFF"
android:padding="5dp">
<FrameLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#00000000">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:orientation="vertical" >
        <WebView  xmlns:android="http://schemas.android.com/apk/res/android"
            android:id="@+id/webview_news_dialog"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="0dp"
            android:background="#00000000"
            />
    </LinearLayout>

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="top|right"
        android:foregroundGravity="top|right"
        >
        <ImageView
            android:id="@+id/imageView_close"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="top|right"
            android:layout_marginRight="0dp"
            android:clickable="true"
            android:src="@drawable/closebutton"
            android:background="#00000000"/>

    </LinearLayout>

</FrameLayout>

这是我的layout_custom_dialog.xml

$.each(data,function(i,d){
    d['index']=i+1; 
    url = url
    d["ad_image"] = '<a href="#" ><img src="'+url+'" class="img-zoom" /></a>'
})  
table = $('#datatable4').dataTable({
    'paging':   true,  
    'ordering': true,  
    'info':     true,  
    "destroy": true,
    "aaData" : data,
    aoColumns: [
      { mData: 'index' },
      { mData: 'ad_title' },
      { mData: 'ad_details' },
      { mData: 'ad_image' },
    ]
});

请帮助我。

0 个答案:

没有答案