Android ConstraintLayout 约束布局 Width 0dp constrainedWidth 百分比布局使用
Posted 安果移不动
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android ConstraintLayout 约束布局 Width 0dp constrainedWidth 百分比布局使用相关的知识,希望对你有一定的参考价值。
我们左边一个布局。右边一个布局作为参考 中间一个Text
代码
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_
android:layout_
tools:context=".MainActivity">
<LinearLayout
android:id="@+id/left"
android:layout_
android:layout_
android:background="@android:color/holo_green_dark"
android:orientation="horizontal"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<LinearLay
以上是关于Android ConstraintLayout 约束布局 Width 0dp constrainedWidth 百分比布局使用的主要内容,如果未能解决你的问题,请参考以下文章
Android开发 - 掌握ConstraintLayout介绍
是否建议在 Android 的 ConstraintLayout 中使用 LinearLayout?