gpt4 book ai didi

android - 在 android ConstraintLayout 的响应式设计中有效地使用边距

转载 作者:行者123 更新时间:2023-11-29 18:28:13 24 4
gpt4 key购买 nike

我在 ConstraintLayout 中有一个 ImageView 并且我想给它 marginTop 以便它与屏幕顶部总共有 40% 的距离安卓设备屏幕。我可以做些什么来获得响应式设计?

最佳答案

在您的 View 中使用 app:layout_constraintVertical_bias="0.4":

    <?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_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="4dp">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/white_circle"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintVertical_bias="0.4"
app:layout_constraintHorizontal_bias="0.2"
/>

</androidx.constraintlayout.widget.ConstraintLayout>

另一种方式是:

    <?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_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="4dp">

<androidx.constraintlayout.widget.Guideline
android:id="@+id/guideline"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
app:layout_constraintGuide_percent="0.4" />

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/white_circle"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toBottomOf="@id/guideline"
/>


</androidx.constraintlayout.widget.ConstraintLayout>

关于android - 在 android ConstraintLayout 的响应式设计中有效地使用边距,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57745621/

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