gpt4 book ai didi

Android:ConstraintLayout - 如何创建具有相等权重的链

转载 作者:搜寻专家 更新时间:2023-11-01 09:36:27 25 4
gpt4 key购买 nike

我有两个 View ,它们必须水平并排放置,并且它们需要占据 50% 的空间。这可以通过指南轻松完成。

但问题是每个 View 都必须能够移动以占据另一个 View 的空间,以防另一个 View 消失。这通过指南是不可能的,但在使用链条时是可能的。

但链条的问题是我无法确保两者(当两者都可见时)占据分配给它们的总宽度水平区域的 50%。

有人可以看看下面的代码有什么问题吗:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.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:background="@color/dark_background"
android:layout_width="0dp"
android:layout_height="0dp"
android:padding="15dp"
tools:layout_width="500dp"
tools:layout_height="300dp"
>



<!--<android.support.constraint.Guideline-->
<!--android:id="@+id/guideline"-->
<!--android:layout_width="0dp"-->
<!--android:layout_height="0dp"-->
<!--android:orientation="vertical"-->
<!--app:layout_constraintLeft_toRightOf="@id/title"-->
<!--app:layout_constraintRight_toRightOf="@id/title"-->
<!--app:layout_constraintGuide_percent="0.5"-->
<!--/>-->

<TextView
android:id="@+id/title"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toLeftOf="@+id/image"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toTopOf="@+id/ic_share"
android:ellipsize="marquee"
android:maxLines="4"
android:textSize="20sp"
android:textColor="#000000"
android:text="This is a test content title. This would be changed eventually"
/>

<ImageView
android:id="@+id/image"
android:layout_width="0dp"
android:layout_height="0dp"
android:adjustViewBounds="true"
android:src="@drawable/ic_logo"
app:layout_constraintDimensionRatio="4:3"
app:layout_constraintLeft_toRightOf="@+id/title"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintVertical_bias="0.0"

/>

</android.support.constraint.ConstraintLayout>

最佳答案

是的,我认为这是一个错误。我在这里提交:

https://code.google.com/p/android/issues/detail?id=248117

关于Android:ConstraintLayout - 如何创建具有相等权重的链,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42775810/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com