v4 Support Library split
support v4 的包被分割成多个小module,你可以根据你项目实际需要来集成
com.android.support:support-compat:24.2.0
com.android.support:support-core-utils:24.2.0
com.android.support:support-core-ui:24.2.0
com.android.support:support-media-compat:24.2.0
com.android.support:support-fragment:24.2.0
API updates
- TextInputLayout 支持是否显示密码开关,默认在 password 模式下是开启的,所以如果项目用的是 TextInputLayout 包裹 EditText 的 想升级24.2.0 需要注意项目是否有这个需求。可以设置 passwordToggleEnabled 为 false 来去掉这个功能
- CoordinatorLayout 为子元素增加了 insetEdge 和 dodgeInsetEdges 两个属性,为的是避免元素间的遮盖,类似 FloatActionButton 和 Snackbar. 官方原文是
A Gravity value describing how this child view insets the CoordinatorLayout. Other child views which are set to dodge the same inset edges will be moved appropriately so that the views do not overlap
测试代码
<android.support.design.widget.CoordinatorLayout
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"
tools:context=".TestActivity">
<TextView
android:id="@+id/text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_insetEdge="bottom"
android:layout_gravity="bottom"
android:text="text 1"/>
<TextView
android:id="@+id/text2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_dodgeInsetEdges="bottom"
android:layout_gravity="bottom"
android:text="text 2"/>
</android.support.design.widget.CoordinatorLayout>
text1 可以是默认不显示在屏幕上,根据实际需求触发显示进入屏幕内, 这时候 text1 相当于 Snackbar, text2 相当于 FloatActionButton.
- RecyclerView.OnFlingListener
增加 RecyclerView 在快速滚动时的回调接口, SnapHelper
是 官方的一个 实现 OnFlingListener 的 一个抽象类,LinearSnapHelper
则是一个完整的实现。
LinearSnapHelper 默认实现的功能是类似 ViewPager ,在滚动结束后,会选择列表某一条居中展示,例如
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getContext(), LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(linearLayoutManager);
LinearSnapHelper snapHelper = new LinearSnapHelper();
snapHelper.attachToRecyclerView(recyclerView);
通过重写下面方法可以更改 LinearSnapHelper 的 功能,返回是 int[] 第一个元素是 x 值 的结束滚动后还需要移动的距离 , 第二个是 y 值
calculateDistanceToFinalSnap(RecyclerView.LayoutManager, View)
-
DiffUtil
可以计算两个集合之间的差异,可以为RecyclerView.Adapter 服务
官方介绍 算法采用的是 Eugene W. Myers's difference algorithm 文档上还有一些测试数据, 简单使用如下
DiffResult result = DiffUtil.calculateDiff(DiffUtil.Callback cb);
result.dispatchUpdatesTo(adapter);
dispatchUpdatesTo 里面会调用 adapter.notifyItemRangeChanged 等方法完成列表更新。
DiffUtil.Callback 需要实现几个抽象方法
public abstract int getOldListSize();
public abstract int getNewListSize();
public abstract boolean areItemsTheSame(int oldItemPosition, int newItemPosition);
public abstract boolean areContentsTheSame(int oldItemPosition, int newItemPosition);
areContentsTheSame 是 areItemsTheSame 返回 true 才会调用的
感兴趣的可以研究下 calculateDiff 源码 和 DiffResult 的 组成结构,是怎么应用到 adapter 上的
Deprecations
一些被废弃的接口方法,由于不再支持 Api 8 及以下版本 像 KeyEventCompat 一些兼容类被声明废弃,最好稍微看下官方列表
Bug fixes
-
Prevent TabLayout from flickering when changing pages
TabLayout 切换会闪烁的bug,印象中 24.0.0 没有这个问题,24.1.0后就有了。。。
差不多关于 Android Support Library 24.2.0 就这样吧,花了近三个小时写文章和测试代码,该出门找吃了。。。