gpt4 book ai didi

Android为图像添加半透明覆盖

转载 作者:行者123 更新时间:2023-11-29 00:14:34 25 4
gpt4 key购买 nike

我是 android 初学者。我正在开发一个应用程序,我想要这样的效果:

enter image description here

我认为它是一个背景图像、一个透明颜色的叠加层和一个 textView

我的布局是这样的:

<?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:id="@+id/backgroundImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="Description" />

<ImageView
android:id="@+id/overlay"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:background="#AAFF0000"
android:contentDescription="Description" />

<TextView
android:id="@+id/textoOpcion"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="TextView" />

</RelativeLayout>

但这行不通。

有什么想法吗?

谢谢。

最佳答案

像这样尝试我希望它对你有用..

这张图片是通过给 textview 背景颜色 #44ff0000

您可以通过将颜色代码 00 的前两个值更改为 ff 来更改颜色的不透明度

#44ff0000 这里44是颜色ff0000的不透明度

enter image description here

<?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:id="@+id/backgroundImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:contentDescription="Description"
android:src="@drawable/ic_launcher" />

<TextView
android:id="@+id/textoOpcion"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/backgroundImage"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignRight="@+id/backgroundImage"
android:background="#44000000"
android:gravity="bottom"
android:text="TextView"
android:textColor="#ffffff" />

</RelativeLayout>

关于Android为图像添加半透明覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27653415/

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