gpt4 book ai didi

android - constraintWidth_percent 计算不正确

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

此布局将显示一个具有一种颜色的 View 和另一个具有另一种颜色的 View 。

当 layout_constraintWidth_percent = 1 时 View 宽度相同。当我将它设置在 0.92 <> 1 之间时,前景 View 变得比背景大。

谁能解决这个问题?我需要前景占背景的 x 百分比

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="15dp"
android:paddingBottom="15dp"
>

<View
android:id="@+id/background"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
android:background="@color/colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>

<View
android:id="@+id/foreground"
android:layout_width="0dp"
android:layout_height="80dp"
android:background="@color/colorAccent"
app:layout_constraintWidth_percent="0.94"
app:layout_constraintHorizontal_bias="0"
app:layout_constraintBottom_toBottomOf="@id/background"
app:layout_constraintLeft_toLeftOf="@id/background"
app:layout_constraintRight_toRightOf="@id/background"
app:layout_constraintTop_toTopOf="@id/background"
/>
</android.support.constraint.ConstraintLayout>

enter image description here

最佳答案

移除背景的开始和结束边距。如果您想要左右边距,请将它们放在父 ConstraintLayout 上。就像现在一样,您在背景上有边距,但在前景上没有。

同时将背景宽度设置为 0dp(与前景相同)。这样,背景将是父 ConstraintLayout 的整个宽度(它本身可以应用您想要的边距),前景将是背景的指定百分比。如果您希望它居中,还可以将前景的水平偏差设置为 0.5。

像这样(here's what this layout looks like)

<?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"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="15dp"
android:paddingBottom="15dp"
android:layout_marginEnd="16dp"
android:layout_marginStart="16dp"
>

<View
android:id="@+id/background"
android:layout_width="0dp"
android:layout_height="100dp"
android:background="@color/colorPrimary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
/>

<View
android:id="@+id/foreground"
android:layout_width="0dp"
android:layout_height="80dp"
android:background="@color/colorAccent"
app:layout_constraintWidth_percent="0.94"
app:layout_constraintHorizontal_bias="0.5"
app:layout_constraintBottom_toBottomOf="@id/background"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="@id/background"
/>
</android.support.constraint.ConstraintLayout>

关于android - constraintWidth_percent 计算不正确,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51443444/

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