我想顯示webview,admob和包含編輯文本和2個按鈕的navbar,但是該頁面會自動轉到webview(如在瀏覽器中)隱藏活動中定義的其他元素....代碼在下面給出...請給出您的寶貴建議...提前謝謝...Webview在瀏覽器窗口中加載url而不是Webview
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical">
<include android:id="@+id/nav_bar_layout" layout="@layout/nav_bar" android:layout_above="@+id/web_view" />
<WebView android:layout_width="fill_parent" android:layout_height="fill_parent" android:id="@+id/web_view" android:layout_centerInParent="true" />
<include android:id="@+id/admob_layout" layout="@layout/admob_layout" android:layout_below="@+id/web_view" />
</RelativeLayout>
一段代碼可能會非常有幫助。 – antonio081014
顯示您的XML和代碼。 – Siddhesh
那麼,我得到的解決方案... http://stackoverflow.com/questions/2378800/android-webview-click-opens-default-browser –