android - 在 imageview 上添加半透明覆盖

标签 android imageview transparency

如何在 imageview 上添加半透明覆盖?

enter image description here

改成

enter image description here

最佳答案

像这样设置你的 imageview::

<ImageView
android:id="@+id/imageview"
android:layout_width="wrap_parent"
android:layout_height="wrap_parent"
android:foreground="@drawable/image_overlay"
android:src="@drawable/your_image" />

image_overlay.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="#401C87C0"
        android:centerColor="#401C87C0"
        android:endColor="#401C87C0"
        />
</shape>

我使用 color-code = #1C87C0 并将其设置为 25% 不透明度,因此最终颜色代码类似于 #401C87C0。您可以根据需要更改颜色不透明度,更改颜色定义中的前 2 个字符::

100% — FF
99% — FC
98% — FA
97% — F7
96% — F5
95% — F2
94% — F0
93% — ED
92% — EB
91% — E8

90% — E6
89% — E3
88% — E0
87% — DE
86% — DB
85% — D9
84% — D6
83% — D4
82% — D1
81% — CF

80% — CC
79% — C9
78% — C7
77% — C4
76% — C2
75% — BF
74% — BD
73% — BA
72% — B8
71% — B5

70% — B3
69% — B0
68% — AD
67% — AB
66% — A8
65% — A6
64% — A3
63% — A1
62% — 9E
61% — 9C

60% — 99
59% — 96
58% — 94
57% — 91
56% — 8F
55% — 8C
54% — 8A
53% — 87
52% — 85
51% — 82

50% — 80
49% — 7D
48% — 7A
47% — 78
46% — 75
45% — 73
44% — 70
43% — 6E
42% — 6B
41% — 69

40% — 66
39% — 63
38% — 61
37% — 5E
36% — 5C
35% — 59
34% — 57
33% — 54
32% — 52
31% — 4F

30% — 4D
29% — 4A
28% — 47
27% — 45
26% — 42
25% — 40
24% — 3D
23% — 3B
22% — 38
21% — 36

20% — 33
19% — 30
18% — 2E
17% — 2B
16% — 29
15% — 26
14% — 24
13% — 21
12% — 1F
11% — 1C

10% — 1A
9% — 17
8% — 14
7% — 12
6% — 0F
5% — 0D
4% — 0A
3% — 08
2% — 05
1% — 03
0% — 00 

关于android - 在 imageview 上添加半透明覆盖,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47151256/

相关文章:

android - 如何修复 Gradle Sync 错误,为 Android 和 iOS 设置新的 React-Native 项目

php - Android 应用程序 - JSON - PHP - localhost --> 通过从 php 脚本获取数据出现 NullPointerException

android - logcat dalvikvm 错误消息的含义

android - 透明背景 imageview 使它上面通常不透明的文本也变得透明。我该如何解决?

c - 使用 Win32 和视觉样式的按钮背景透明度

transparency - IE11 中的边框图像透明度错误

android - 如何使用 MVP 模式将数据从一个 Activity 传递到另一个 Activity ?

android - 无法控制 Gridview 中的橙色部分大小

android - 在相对布局 Android 中动态显示多个 ImageView

C# Picturebox 透明背景似乎不起作用