gpt4 book ai didi

android - 在 Android 上覆盖 ImageView

转载 作者:可可西里 更新时间:2023-11-01 18:57:17 25 4
gpt4 key购买 nike

所以我有一个来自网络的图像列表,我不知道它们是什么颜色,我想在 ImageView 上放置一个文本。

我的想法是放置 ImageView,一个带有透明度渐变的图像覆盖在 ImageView 及其上方的文本上。我想模仿这种行为:

enter image description here

有没有办法通过 XML 做到这一点?

最佳答案

当您为列表项编写 XML 时,无论您编写的是什么 ListAdapter,它都会在 getView(...) 中膨胀,您肯定可以做到这一点。

列表项是这样的:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

<ImageView
android:layout_width="320dp"
android:layout_height="240dp"
android:background="#ACACAC"/>

<RelativeLayout
android:layout_width="320dp"
android:layout_height="240dp"
android:background="@drawable/gradient">

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Here is your text"
android:textColor="#000000"
android:layout_alignParentBottom="true"/>

</RelativeLayout>

</RelativeLayout>

然后创建可绘制对象/渐变。为此,您可以回收来自 here 的答案。 .

关于android - 在 Android 上覆盖 ImageView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20804564/

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