ConstraintLayout2.0版本除了優(yōu)化布局性能外默责,還增加了一些新特性,使得開發(fā)過程更加方便良姆。
ImageFilterButton嫩实、ImageFilterView
ImageFilterView、ImageFilterButton分別對應ImageView搏恤、ImageViewButton违寿。主要用來處理圓角、色差熟空、放大縮小的特性藤巢。
- 圓角大小app:round:取值0-size/2之間,超過就沒什么意義了息罗,默認0掂咒,就是方形;對于正方形來說迈喉,取值size/2就是圓形, 圓角是針對View的, 將View繪制成圓角.
- 圓角比例app:roundPercent:取值0-1之間绍刮,超過1就沒什么意義了,默認0就是方形挨摸,1是圓形圖片孩革。和app:round意思一樣,只不過一個是具體的大小得运,一個是百分比膝蜈。
- 縮放app:imageZoom:放大或縮小圖片大小,比如:2表示圖片放大到原來的2倍熔掺,0.5表示圖片縮小到原來的一半饱搏。View的大小不變,只是顯示的圖片縮放了置逻。
- 旋轉(zhuǎn)app:imageRotate:旋轉(zhuǎn)圖片的角度推沸,比如90,表示圖片旋轉(zhuǎn)90度。View的角度和大小是不變的鬓催。
- 交叉圖app:altSrc:需要跟app:crossfade共同使用肺素,app:crossfade取值0-1,默認0為交叉圖完全透明,不展示深浮。取值1交叉圖完全展示压怠,覆蓋到src上。
- 飽和度app:saturation:float型飞苇,默認1,取值0為灰階樣式蜗顽,大于1的數(shù)值都是超飽和狀態(tài)布卡,色彩非常艷麗,有點辣眼睛雇盖。
- 亮度app:brightness:float型忿等,默認1,值越大亮度越高崔挖。
- 色溫app:warmth:float型贸街,默認值1,小于1是冷色調(diào)狸相,大于1是暖色調(diào)薛匪。
對比度app:contrast:float型,默認1脓鹃,取值0相當于圖片變?nèi)谝菁猓笥?都是高對比度狀態(tài)。 - app:overlay瘸右,官方釋義:定義alt圖像是在原始圖像的頂部淡入娇跟,還是與其交叉淡入。默認值為true太颤。對于半透明對象設置為false苞俘。
使用示例:
原圖:
加上屬性:
<androidx.constraintlayout.utils.widget.ImageFilterView
android:id="@+id/imagefilterview"
android:layout_width="300dp"
android:layout_height="200dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:src="@mipmap/pic_test"
android:scaleType="centerCrop"
android:layout_marginTop="30dp"
app:round="10dp"
app:imageZoom="2"
app:imageRotate="40"
app:saturation="0"
app:brightness="1.2"
app:contrast="0.8"
app:overlay="true"/>
屬性圖:
Layer
Layer作為一種新的輔助工具,用法跟Group相似龄章,可以認為是Group的強化版吃谣,它可以讓你在多個視圖上創(chuàng)建一個虛擬的圖層。但是瓦堵,與Flow不同的是基协,它并不會對視圖進行布局操作,它的使用場景是對多個視圖同時進行變換菇用。
例如澜驮,你需要對多個視圖整體進行旋轉(zhuǎn)、平移或縮放操作惋鸥,再或者說是設置一組View的背景杂穷,那么就可以使用Layer悍缠。
Layer在布局期間會調(diào)整大小,其大小會根據(jù)其引用的所有視圖進行調(diào)整耐量,你可以將Layer理解為一組View的邊界矩形范圍飞蚓,通過Layer,可以很方便的拿到referenced_ids指定的View的邊界范圍廊蜒,示例代碼如下所示趴拧。
<androidx.constraintlayout.helper.widget.Layer
android:id="@+id/layer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:constraint_referenced_ids="imagefilterview, imagefilterview2"/>
Flow
Flow是一個流式布局,跟ChipGroup山叮、Chip有點類似著榴。可以制作不規(guī)則的布局屁倔。
- app:constraint_referenced_ids 指定引用的控件id或其它Flow 的id等脑又,也可以通過tag引用.
被引用的控件原來的方位約束會失效
按引用的順序排列 -
app:flow_wrapMode指定控件排列時自適應方式,不同方式可用的配套屬性也不一樣锐借。
none : 簡單地把constraint_referenced_ids里面的元素組成chain,即使空間不夠
chain : 根據(jù)空間的大小和元素的大小組成一條或者多條 chain
aligned : chain類似问麸,但是會對齊
- android:orientation 指定Flow的方向
- Gap展示了Flow中每個元素直接的間隔,這個間隔包含horizontalGap和verticalGap兩種钞翔,你可以在原有Chain Style的基礎上進行額外設置
app:flow_horizontalGap="30dp" 水平間隔
app:flow_verticalGap="30dp" 垂直間隔
使用示例:
<androidx.constraintlayout.helper.widget.Flow
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:constraint_referenced_ids="imagefilterview, imagefilterview2"
android:orientation="horizontal"
app:flow_wrapMode="chain"
app:flow_horizontalGap="10dp"/>
ConstraintLayoutStates
ConstraintLayoutStates是ConstraintLayout2.0新增的用于切換狀態(tài)布局的一個功能严卖,它可以根據(jù)狀態(tài)切換不同的布局文件。
首先嗅战,需要在layout下創(chuàng)建不同狀態(tài)的layout xml文件妄田,布局文件的root id相同即可。
新建布局:
<?xml version="1.0" encoding="utf-8"?>
<ConstraintLayoutStates xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<State
android:id="@+id/start"
app:constraints="@layout/activity_constraint_layout_states_start" />
<State
android:id="@+id/loading"
app:constraints="@layout/activity_constraint_layout_states_loading" />
<State
android:id="@+id/end"
app:constraints="@layout/activity_constraint_layout_states_end" />
</ConstraintLayoutStates>
控制狀態(tài)切換:
val constraintLayout = findViewById<ConstraintLayout>(R.id.constraint_state)
constraintLayout.loadLayoutDescription(R.xml.constraint_layout_states)
constraintLayout.setOnClickListener {
constraintLayout.setState(R.id.loading, 0, 0)
}
參考:
https://mp.weixin.qq.com/s/7r_53A5wbgHpfJV_BHHglQ
https://blog.csdn.net/Mr_Tony/article/details/125133580