今天整理的是之前项目中写的一个首页针对于列表进行条件过滤的效果。相关描述: 此次省略xxx字… 。
还是来看一下效果图吧(注意看好操作之后的变化):
废话就不多说了,接下来直奔主题,先看一下我们的界面布局:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#f0f0f0"
android:descendantFocusability="blocksDescendants">
<com.lvfq.homepage_master.view.CusScrollView
android:id="@+id/cus_scroll_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<FrameLayout
android:id="@+id/fl_main_container"
android:layout_width="match_parent"
android:layout_height="180dp" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="80dp"
android:background="#f0f0f0"
android:orientation="horizontal"
android:paddingBottom="5dp">
<TextView
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#fff"
android:drawableTop="@mipmap/ic_launcher"
android:gravity="center"
android:text="模拟占位" />

本文介绍如何在Android中实现ListView和RecyclerView的过滤功能,以及ScrollView内标题栏的渐变效果。通过自定义CusScrollView、MaxListView和FilterView组件,解决了ScrollView嵌套ListView时的焦点和显示问题,并提供了ListView高度不足时的处理方案。同时,讨论了ScrollView滚动时标题栏透明度的动态调整方法和RecyclerView滑动监听的渐变实现。
2654

被折叠的 条评论
为什么被折叠?



