将imageview放在android中的webview上

时间:2014-02-24 06:17:39

标签: android android-layout webview

我在开发时遇到了一个问题。

我的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>`

预先感谢您的建议......

2 个答案:

答案 0 :(得分:0)

更改此类布局或使用Framelayout代替Imageview

添加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.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>`

答案 1 :(得分:0)

请改变观看顺序。即Webview之后的ImageView