v4 Support Library split
support v4 的包被分割成多個(gè)小module瞪浸,你可以根據(jù)你項(xiàng)目實(shí)際需要來集成
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 支持是否顯示密碼開關(guān)侥涵,默認(rèn)在 password 模式下是開啟的府蛇,所以如果項(xiàng)目用的是 TextInputLayout 包裹 EditText 的 想升級(jí)24.2.0 需要注意項(xiàng)目是否有這個(gè)需求疏日〔⒋澹可以設(shè)置 passwordToggleEnabled 為 false 來去掉這個(gè)功能
- CoordinatorLayout 為子元素增加了 insetEdge 和 dodgeInsetEdges 兩個(gè)屬性肪康,為的是避免元素間的遮蓋宜岛,類似 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
測(cè)試代碼
<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 可以是默認(rèn)不顯示在屏幕上竣稽,根據(jù)實(shí)際需求觸發(fā)顯示進(jìn)入屏幕內(nèi)侦啸, 這時(shí)候 text1 相當(dāng)于 Snackbar, text2 相當(dāng)于 FloatActionButton.
- RecyclerView.OnFlingListener
增加 RecyclerView 在快速滾動(dòng)時(shí)的回調(diào)接口丧枪, SnapHelper
是 官方的一個(gè) 實(shí)現(xiàn) OnFlingListener 的 一個(gè)抽象類光涂,LinearSnapHelper
則是一個(gè)完整的實(shí)現(xiàn)。
LinearSnapHelper 默認(rèn)實(shí)現(xiàn)的功能是類似 ViewPager 拧烦,在滾動(dòng)結(jié)束后忘闻,會(huì)選擇列表某一條居中展示,例如
LinearLayoutManager linearLayoutManager = new LinearLayoutManager(getContext(), LinearLayoutManager.HORIZONTAL, false);
recyclerView.setLayoutManager(linearLayoutManager);
LinearSnapHelper snapHelper = new LinearSnapHelper();
snapHelper.attachToRecyclerView(recyclerView);
通過重寫下面方法可以更改 LinearSnapHelper 的 功能恋博,返回是 int[] 第一個(gè)元素是 x 值 的結(jié)束滾動(dòng)后還需要移動(dòng)的距離 齐佳, 第二個(gè)是 y 值
calculateDistanceToFinalSnap(RecyclerView.LayoutManager, View)
-
DiffUtil
可以計(jì)算兩個(gè)集合之間的差異,可以為RecyclerView.Adapter 服務(wù)
官方介紹 算法采用的是 Eugene W. Myers's difference algorithm 文檔上還有一些測(cè)試數(shù)據(jù), 簡(jiǎn)單使用如下
DiffResult result = DiffUtil.calculateDiff(DiffUtil.Callback cb);
result.dispatchUpdatesTo(adapter);
dispatchUpdatesTo 里面會(huì)調(diào)用 adapter.notifyItemRangeChanged 等方法完成列表更新债沮。
DiffUtil.Callback 需要實(shí)現(xiàn)幾個(gè)抽象方法
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 才會(huì)調(diào)用的
感興趣的可以研究下 calculateDiff 源碼 和 DiffResult 的 組成結(jié)構(gòu)炼吴,是怎么應(yīng)用到 adapter 上的
Deprecations
一些被廢棄的接口方法,由于不再支持 Api 8 及以下版本 像 KeyEventCompat 一些兼容類被聲明廢棄疫衩,最好稍微看下官方列表
Bug fixes
-
Prevent TabLayout from flickering when changing pages
TabLayout 切換會(huì)閃爍的bug硅蹦,印象中 24.0.0 沒有這個(gè)問題歼狼,24.1.0后就有了袁波。蔬崩。绣版。
差不多關(guān)于 Android Support Library 24.2.0 就這樣吧,花了近三個(gè)小時(shí)寫文章和測(cè)試代碼假褪,該出門找吃了署咽。。生音。