- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个webView
,在这个webView
上有一个按钮
。我在 webview
上捕获了一个触摸事件,如下所示:webView.setOnTouchListener(this);
。
@Override
public boolean onTouch(View v, MotionEvent event) {
if (ADS_VIDEO.contains(v.getId()) && v.getId() == R.id.webView
&& event.getAction() == MotionEvent.ACTION_DOWN) {
intentVideo = new Intent(getBaseContext(),
AdVideoActivity.class);
startActivity(intentVideo);
}
return false;
}
我的按钮也有这个:
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
webView.setVisibility(View.GONE);
button.setVisibility(View.GONE);
}
});
我的问题是,当我单击按钮
时,启动了webView
的事件,而不是链接到按钮的事件。
更新:
xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dip"
android:id="@+id/relativeForWeb" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:contentDescription="@string/descr_image"
/>
<ProgressBar
android:id="@+id/loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone" />
<Button
android:id="@+id/bt"
android:layout_width="42dip"
android:layout_height="42dip"
android:text="x"
android:background = "@drawable/roundedbutton"/>
<WebView
android:id="@+id/webView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</RelativeLayout>
最佳答案
因为在layout.xml 中WebView 位于Button 之后,所以它位于按钮之上(RelativeLayout 根据 View 在layout.xml 中的顺序设置其 View 的z 顺序)。并且由于 webview 位于按钮之上,因此它首先获取触摸事件并消费它。
只需将 webview 声明移至您的layout.xml 中的按钮声明之前即可。
像这样:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="0dip"
android:id="@+id/relativeForWeb" >
<ImageView
android:id="@+id/image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:contentDescription="@string/descr_image"
/>
<ProgressBar
android:id="@+id/loading"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:visibility="gone" />
<WebView
android:id="@+id/webView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/bt"
android:layout_width="42dip"
android:layout_height="42dip"
android:text="x"
android:background = "@drawable/roundedbutton"/>
</RelativeLayout>
关于java - webView.ontouch和button.onclick之间的冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14590802/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!