gpt4 book ai didi

android - 如何防止 ScrollView 拦截其背后 View 的点击/触摸事件?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:58:36 27 4
gpt4 key购买 nike

我在 FrameLayout 中有一个 ScrollView 和一个 ImageView。 ImageView 在 ScrollView 后面

我的 ScrollView 有一个透明空间(LinearLayout s_layout_transparent,高度为 925px)。

所以我的 ImageView 可以通过这个透明空间看到不能点击

我试图添加一些值 (android:clickable="false"android:focusable="android:focusableInTouchMode="false") 来 ScrollView 以防止它拦截点击事件ImageView 但这根本不起作用。

这是我的布局:

<FrameLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:gravity="top|center_horizontal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingRight="10dp"
>
<ImageView
android:visibility="visible"
android:id="@+id/s_imgv_splash"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/temp_detail_screen_splash"
android:adjustViewBounds="true"
android:scaleType="fitXY"/>
</LinearLayout>
<com.dreambox.android.saven.Views.ScrollView
android:id="@+id/s_scrollview_event_detail"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbars="none"
android:visibility="visible"
android:clickable="false"
android:focusable="false"
android:focusableInTouchMode="false"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clickable="false"
android:focusableInTouchMode="false"
android:focusable="false">
<LinearLayout
android:id="@+id/s_layout_transparent"
android:layout_gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="925px"
android:orientation="horizontal"
android:background="@color/trasparent"
android:clickable="false"
android:focusableInTouchMode="false"
android:focusable="false">
</LinearLayout>
<LinearLayout...>
<LinearLayout...>
</LinearLayout>
</com.dreambox.android.saven.Views.ScrollView>
</FrameLayout>

最佳答案

如果你可以用一个空 View 填充透明部分(我们称之为 dummyView),你可以做一些像...

dummyView.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
// pass on the touch event to the ImageView
s_imgv_splash.dispatchTouchEvent(event);
// returning true because we handled the event
return true;
}
});

关于android - 如何防止 ScrollView 拦截其背后 View 的点击/触摸事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25839816/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com