仿微信地图的可变化高度的列表页

栏目: Android · 发布时间: 5年前

内容简介:通过拖拽事件,改变列表的高度

点击实现列表的伸缩,拖拽实现列表的伸缩

仿微信地图的可变化高度的列表页

一句话原理

通过拖拽事件,改变列表的高度

代码

activity_map.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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="match_parent"
    android:orientation="vertical">

    <include layout="@layout/common_title_lib" />

    <com.amap.api.maps.MapView
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_marginTop="60dp"
        android:layout_weight="1"></com.amap.api.maps.MapView>

    <LinearLayout
        android:id="@+id/ll_line"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:background="@android:color/white"
        android:orientation="vertical"

        app:layout_constraintBottom_toBottomOf="parent">

        <android.support.constraint.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="56dp"
            android:id="@+id/cl_top"
            android:paddingLeft="16dp"
            android:paddingTop="8dp"
            android:paddingRight="16dp">

            <ImageView

                android:layout_width="56dp"
                android:layout_height="8dp"
                android:src="@drawable/gray_tag"
                app:layout_constraintLeft_toLeftOf="parent"
                app:layout_constraintRight_toRightOf="parent" />

            <ImageView
                android:id="@+id/imgVew_1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp"
                android:src="@drawable/red_point"
                app:layout_constraintBottom_toTopOf="@id/imgVew_2"
                app:layout_constraintTop_toTopOf="parent" />


            <TextView
                android:id="@+id/tv_start_address"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="16dp"
                android:textColor="@android:color/black"
                app:layout_constraintBottom_toBottomOf="@id/imgVew_1"

                app:layout_constraintLeft_toRightOf="@id/imgVew_1"
                app:layout_constraintTop_toTopOf="@id/imgVew_1"
                tools:text="山西鼎盛钢铁" />

            <ImageView
                android:id="@+id/imgVew_2"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginTop="8dp"
                android:paddingBottom="8dp"
                android:src="@drawable/blue_point"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintTop_toBottomOf="@id/imgVew_1" />

            <TextView
                android:id="@+id/tv_end_address"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="16dp"

                android:paddingBottom="8dp"
                android:textColor="@android:color/black"
                app:layout_constraintBottom_toBottomOf="@id/imgVew_2"
                app:layout_constraintLeft_toRightOf="@id/imgVew_2"
                app:layout_constraintTop_toTopOf="@id/imgVew_2"
                tools:text="山西鼎盛钢铁" />
        </android.support.constraint.ConstraintLayout>

        <View
            android:layout_width="match_parent"
            android:layout_height="1dp"
            android:background="@color/edit_hint" />

        <android.support.v7.widget.RecyclerView
            android:id="@+id/lstVew_line"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_constraintBottom_toBottomOf="parent" />
    </LinearLayout>
</android.support.constraint.ConstraintLayout>

关键逻辑代码

llLine = findViewById(R.id.ll_line);
        clTop = findViewById(R.id.cl_top);
 llLineMinHight = (int) (ScreenUtil.getScreenHeight(GpsActivity.this) * 0.3 + 0.5);
        llLineMaxHight = (int) (ScreenUtil.getScreenHeight(GpsActivity.this) * 0.8 + 0.5);
        llLineCurrentHight = llLineMinHight;
        ConstraintLayout.LayoutParams lp = (ConstraintLayout.LayoutParams) llLine.getLayoutParams();
        lp.height = llLineMinHight;
        llLine.setLayoutParams(lp);


        clTop.setOnTouchListener(new View.OnTouchListener() {
            @Override
            public boolean onTouch(View v, MotionEvent event) {
                switch (event.getAction()) {
                    case MotionEvent.ACTION_DOWN:
                        // 获取当前列表的高度
                        currentHight = llLine.getLayoutParams().height;
                        lastY = (int) event.getRawY();
                        break;
                        case MotionEvent.ACTION_MOVE:
                        // 滑动的距离
                        int dy = (int) event.getRawY() - lastY;
                        //判断是点击事件还是拖拽事件
                        if(dy==0){
                            isClick=true;
                        }else{
                            isClick=false;
                        }
                        int newHight = currentHight - dy;
                        //判断拖拽的高度在最大值和最小值之间
                        if (newHight >= llLineMaxHight) {
                            llLineCurrentHight = llLineMaxHight;
                            newHight = llLineMaxHight;

                        } else if (newHight <= llLineMinHight) {
                            llLineCurrentHight = llLineMinHight;
                            newHight = llLineMinHight;
                        }
            
                        llLine.getLayoutParams().height = newHight;
                        //刷新UI
                        llLine.requestLayout();
                        break;

                    case MotionEvent.ACTION_UP:
                        // 手指抬起时,获取当前列表的高度
                        currentHight = llLine.getLayoutParams().height;
                        // 点击事件的 展开
                        if (currentHight == llLineMinHight && isClick) {
                            startPropertyAnimation(llLine, llLineMinHight, llLineMaxHight);
                            llLineCurrentHight = llLineMaxHight;
                        } 
                        //如果拖拽的高度接近最大,则缓缓展开
                        else if (currentHight > llLineMinHight && currentHight <= llLineMaxHight/1.5) {
                            startPropertyAnimation(llLine, currentHight, llLineMinHight);
                            llLineCurrentHight = llLineMinHight;
                        } 
                        //如果拖拽的高度接近最小,则缓缓收缩
                        else if (currentHight > llLineMaxHight / 1.5 && currentHight < llLineMaxHight) {
                            startPropertyAnimation(llLine, currentHight, llLineMaxHight);
                            llLineCurrentHight = llLineMaxHight;
                        } 
                        //收缩点击事件
                        else if (currentHight == llLineMaxHight && isClick) {
                            startPropertyAnimation(llLine, llLineMaxHight, llLineMinHight);
                            llLineCurrentHight = llLineMinHight;
                        }
                        clTop.performClick();
                        break;
                                        default:
                        break;
                }
                return true;
            }
        });

以上所述就是小编给大家介绍的《仿微信地图的可变化高度的列表页》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

Linux/Unix设计思想

Linux/Unix设计思想

甘卡兹 / 漆犇 / 人民邮电出版社 / 2012-3-28 / 39.00元

《Linux\Unix设计思想/图灵程序设计丛书》内容简介:将Linux的开发方式与Unix的原理有效地结合起来,总结出Linux与Unix软件开发中的设计原则。《Linux\Unix设计思想/图灵程序设计丛书》前8章分别介绍了Linux与Unix中9条基本的哲学准则和10条次要准则。第9章和第10章将Unix系统的设计思想与其他系统的设计思想进行了对比。最后介绍了Unix哲学准则在其他领域中的应......一起来看看 《Linux/Unix设计思想》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具