ConstraintLayout系列:设置高度百分比

Posted zhangjin1120

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ConstraintLayout系列:设置高度百分比相关的知识,希望对你有一定的参考价值。

  • 这个高度百分比是占父布局的百分比,要看具体代码的写法来定。要实现同一个效果,父布局不同,设置的值也不一样。
  • 代码:app:layout_constraintHeight_percent="0.21",使用如下:
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    xmlns:tools="http://schemas.android.com/tools">

    <View
        android:id="@+id/view_panel"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintHeight_percent="0.21"
        app:layout_constraintBottom_toBottomOf="parent" />
        
</androidx.constraintlayout.widget.ConstraintLayout>

以上是关于ConstraintLayout系列:设置高度百分比的主要内容,如果未能解决你的问题,请参考以下文章

为约束布局内的布局设置最小百分比高度

ConstraintLayout系列:ConstraintLayout实现局部垂直居中

Android 屏幕适配屏幕适配通用解决方案 ⑥ ( 约束布局 ConstraintLayout 百分比布局方案 | 将设计稿尺寸自动转为约束布局百分比标签属性 | 将输出结果设置到组件标签中 )

Android 屏幕适配屏幕适配通用解决方案 ⑥ ( 约束布局 ConstraintLayout 百分比布局方案 | 将设计稿尺寸自动转为约束布局百分比标签属性 | 将输出结果设置到组件标签中 )

MotionLayout 和 ConstraintLayout 不围绕儿童高度设置动画

如何使 ConstraintLayout 使用百分比值?