2014-02-24 73 views
0

我在開發時遇到了一個問題。在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>` 

提前感謝您的建議....

+0

準確顯示您的圖像快照您要如何操作? – Piyush

+0

更改Webview和ImageView的位置,即在您的佈局中首先添加Webview,然後Imageview – Pramod

+0

我不想觸摸webview內容。我只想觸摸imageview內容。我該怎麼辦? – prakash

回答

0

這樣或使用Framelayout更改佈局,而不是在上面添加Imageviewwebview

<?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.webkit.WebView 
    android:id="@+id/webView1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:layout_below="@+id/tv1" 
    android:scrollbars="none"> 
<ImageView 
    android:id="@+id/tv1" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="@android:color/transparent"/> 
</android.webkit.WebView> 
</RelativeLayout>` 
0

請反轉的觀點順序。即WebView後的ImageView

+0

這不是你的答案。這必須是評論!所以請熟悉這個.. – Piyush

+0

我做了你的告訴,但我沒有得到結果。感染了webview內容.. – prakash

+0

嘗試android:focusable =「false」 – NullPointerException