54.android 简单的解决ScrollView与地图的滑动冲突

导读:本篇文章讲解 54.android 简单的解决ScrollView与地图的滑动冲突,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com

//ScrollView嵌套地图,用我的这种方式解决滑动冲突,甭管你是什么地图,分分钟搞定。

//ok 先上效果图,不是动图。

54.android 简单的解决ScrollView与地图的滑动冲突

 

//第一步 写个MapContainer类继承RelativeLayout

public class MapContainer extends RelativeLayout {
    private ScrollView scrollView;
    public MapContainer(Context context) {
        super(context);
    }

    public MapContainer(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public void setScrollView(ScrollView scrollView) {
        this.scrollView = scrollView;
    }

    //当点击到地图的时候,让ScrollView不拦截事件,把事件传递到子View
    @Override
    public boolean onInterceptTouchEvent(MotionEvent ev) {
        if (ev.getAction() == MotionEvent.ACTION_UP) {
            scrollView.requestDisallowInterceptTouchEvent(false);
        } else {
            scrollView.requestDisallowInterceptTouchEvent(true);
        }
        return false;
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        return true;
    }
}

 

//第二步 布局中使用(最外层ScrollView):

<com.example.hasee.a828huadong.MapContainer
    android:id="@+id/map_container"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <com.amap.api.maps.MapView
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="300dp"/>
</com.example.hasee.a828huadong.MapContainer>

//完整版我的布局:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:id="@+id/mScroll"
    android:orientation="vertical"
    tools:context="com.example.hasee.a828huadong.MainActivity">

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    <com.example.hasee.a828huadong.MapContainer
        android:id="@+id/map_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <com.amap.api.maps.MapView
            android:id="@+id/map"
            android:layout_width="match_parent"
            android:layout_height="300dp"/>
    </com.example.hasee.a828huadong.MapContainer>


        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>
        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>
        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>
        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>
        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>
        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>
        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>
        <TextView
            android:gravity="center"
            android:text="解决滑动冲突"
            android:layout_marginTop="20dp"
            android:background="@color/colorAccent"
            android:layout_width="match_parent"
            android:layout_height="50dp"></TextView>

    </LinearLayout>




</ScrollView>

 

//好了第三步 Activity里使用:

mScroll = findViewById(R.id.mScroll);
map_container = findViewById(R.id.map_container);
map_container.setScrollView(mScroll);

 

//———————————————————–完—————————————————————————-

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/118340.html

(0)
seven_的头像seven_bm

相关推荐

发表回复

登录后才能评论
极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!