gpt4 book ai didi

android - 如何在android约束布局中半重叠图像

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:12:23 25 4
gpt4 key购买 nike

有什么方法可以仅使用约束布局将图像的一半放置在另一幅图像之上。我知道它可以使用相对布局和框架布局来完成,但是在约束布局的情况下还是有吗? 更喜欢不需要任何高度/宽度硬编码的方式

需求看起来像这样

enter image description here

最佳答案

您可以仅使用约束布局来设置布局,如下所示:

<?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">

<ImageView
android:id="@+id/imageView4"
android:layout_width="0dp"
android:layout_height="0dp"
android:background="@android:color/holo_orange_dark"
app:layout_constraintBottom_toTopOf="@id/guideline"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0" />

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

<ImageView
android:id="@+id/imageView_upper"
android:layout_width="70dp"
android:layout_height="70dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="@id/guideline"
app:layout_constraintBottom_toBottomOf="@id/guideline"
android:background="@android:color/holo_purple"/>

</androidx.constraintlayout.widget.ConstraintLayout>

注意:如果您正在使用支持库,那么您必须使用 android.support.constraint.ConstraintLayout 而不是 androidx.constraintlayout.widget.ConstraintLayout

enter image description here

关于android - 如何在android约束布局中半重叠图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49319581/

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