我在開發時遇到了一個問題。在android的webview中將imageview放在android
我的XML文件數據: 我已經在xml文件中使用fill_parent中的一個webview,並且我已經使用了圖像視圖,底部佈局,我使用了下一個和上一個按鈕的按鈕。我的問題是我不會觸摸webview內容,只想觸摸圖片瀏覽內容,但是當我觸摸圖片瀏覽內容,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" >
<ImageView
android:id="@+id/tv1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/transparent"/>
<android.webkit.WebView
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_below="@+id/tv1"
android:scrollbars="none">
</android.webkit.WebView>
</RelativeLayout>`
提前感謝您的建議....
準確顯示您的圖像快照您要如何操作? – Piyush
更改Webview和ImageView的位置,即在您的佈局中首先添加Webview,然後Imageview – Pramod
我不想觸摸webview內容。我只想觸摸imageview內容。我該怎麼辦? – prakash