gpt4 book ai didi

android - 将布局约束为屏幕高度的 50%?

转载 作者:行者123 更新时间:2023-12-05 00:55:28 29 4
gpt4 key购买 nike

我在 Android Studio 中有一个 ConstraintLayout,我希望它的高度为屏幕大小的 60%,无论它在什么设备上运行,我想知道如何在 xml 中做到这一点?

目前我有:

<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/recycler_view_container"
android:layout_width="match_parent"
android:layout_height="372dp" // BAD!! HARDCODED
android:background="@color/white">

</androidx.constraintlayout.widget.ConstraintLayout>

我怎么能这样做?如您所见,layout_height 现在是硬编码的。

最佳答案

这是我的答案。我认为它应该明确您的要求。

<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_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorWhite">

<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:background="@color/colorRed"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintHeight_percent="0.50">

</androidx.constraintlayout.widget.ConstraintLayout>

</androidx.constraintlayout.widget.ConstraintLayout>

您可以根据需要更改高度百分比。谢谢。

关于android - 将布局约束为屏幕高度的 50%?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64379308/

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