我在开发时遇到了一个问题。
我的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 :(得分: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