gpt4 book ai didi

android - 如何在 ConstraintLayout 中将 TextView 放置在 ImageVew 之上

转载 作者:行者123 更新时间:2023-12-05 00:16:40 24 4
gpt4 key购买 nike

我正在使用 ConstraintLayout,我想在 ImageView 之上放置一个 TextView。

但我无法在 ConstraintLayout 中找到此功能。

<?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:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.sayani.myApp.MainActivity">

<ImageView
android:id="@+id/imageView"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginBottom="4dp"
android:layout_marginEnd="4dp"
android:layout_marginStart="4dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintVertical_bias="0.0"
app:srcCompat="@drawable/image1" />

<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="240dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
app:layout_constraintBottom_toBottomOf="@+id/imageView"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.501"
app:layout_constraintStart_toStartOf="parent"/>
</android.support.constraint.ConstraintLayout>

在上面的代码中,TextView 隐藏在 ImageView 之下。
如何将文本置于图像之上?

最佳答案

如果您的应用的最低 SDK 为 21 或更高,您可以将其添加到您希望显示在另一个 UI 元素之上的任何 UI 元素:android:elevation="4dp"

不一定是 4dp,它可以更高或更低,具体取决于您项目中的工作。

关于android - 如何在 ConstraintLayout 中将 TextView 放置在 ImageVew 之上,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54354177/

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