android 百分比布局操作sp,constraintlayout中的百分比布局

constraintlayout布局中为我们提供了,两种百分布局可以帮助我们去适配界面

第一种

layout_constraintVertical_bias 该属性代表的意思是垂直距离的百分比,默认0.5就是剧中

第二种

layout_constraintHorizontal_bias 水平距离的百分比,也是一样默认0.5就是剧中

如果要使用以上属性,必须要设置该view的上下左右的约束

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/tv__id_item_layout"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:background="@color/colorAccent"

android:textAllCaps="false"

android:textColor="@android:color/white"

android:textSize="20sp"

app:layout_constraintEnd_toEndOf="parent"

app:layout_constraintStart_toStartOf="parent"

app:layout_constraintTop_toTopOf="parent" />

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:background="@drawable/ic_launcher_background"

app:layout_constraintBottom_toBottomOf="parent"

app:layout_constraintHorizontal_bias="0.9"

app:layout_constraintLeft_toLeftOf="@id/tv__id_item_layout"

app:layout_constraintRight_toRightOf="parent"

app:layout_constraintTop_toTopOf="@id/tv__id_item_layout"

app:layout_constraintVertical_bias="0.8">

看看各大屏幕的效果

1daec18b2a99

{94CE0FE4-6926-451F-949A-782E275ED40D}_20200815102622.jpg

还有一种

layout_constraintDimensionRatio 宽高百分比和高宽百分比的约束属性

要想使用此属性,必须设置0db,也就是设置MATCH_CONSTRAINT属性,才能生效,这里默认的是宽和高的比值,也可以自己定义 H 3:1 这样格式就是高比宽

1daec18b2a99

{0C8E0F90-5214-4480-A1F5-348A0306DDC9}_20200815104622.jpg

xmlns:app="http://schemas.android.com/apk/res-auto"

android:layout_width="match_parent"

android:layout_height="match_parent">

android:id="@+id/tv__id_item_layout"

android:layout_width="0dp"

android:layout_height="wrap_content"

android:background="@color/colorAccent"

android:textAllCaps="false"

android:textColor="@android:color/white"

android:textSize="20sp"

app:layout_constraintEnd_toEndOf="parent"

app:layout_constraintStart_toStartOf="parent"

app:layout_constraintTop_toTopOf="parent" />

app:layout_constraintDimensionRatio="1:5"

android:layout_width="wrap_content"

android:layout_height="0dp"

android:background="@drawable/ic_launcher_background"

app:layout_constraintBottom_toBottomOf="parent"

app:layout_constraintLeft_toLeftOf="@id/tv__id_item_layout"

app:layout_constraintRight_toRightOf="parent"

app:layout_constraintTop_toTopOf="@id/tv__id_item_layout">

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值