gpt4 book ai didi

android - 为什么ImageView的png图像中包含背景颜色?

转载 作者:行者123 更新时间:2023-11-29 20:10:32 26 4
gpt4 key购买 nike

我绝对是 Android 的初学者。我正在学习如何设计布局。但是我在使用 ImageView 时遇到了问题:

当我用 PNG 文件设置 ImageView 的 src 时,深色背景会自动添加到所有图像,如屏幕截图所示:

enter image description here

真实图像是这样的:(没有背景)

enter image description here

这是我的工具栏的 xml 布局,我没有为 ImageView 设置任何背景:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:fitsSystemWindows="true"
android:minHeight="?attr/actionBarSize"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:background="?attr/colorPrimaryDark">
<ImageButton
android:id="@+id/btn_open_sidebar"
android:src="@drawable/open_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />

<ImageButton
android:layout_alignParentRight="true"
android:id="@+id/btn_calendar"
android:src="@drawable/calendar"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>

那么如何使 PNG 图像透明或与工具栏具有相同的背景呢?我的意思是,如何删除默认的深色背景颜色?

最佳答案

我认为是因为您正在使用 ImageButton android 为其添加了默认背景。您可以将 android:backgroud="@android:color/transparent" 添加到您的 ImageButton 并强制 android 使用透明背景。

关于android - 为什么ImageView的png图像中包含背景颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35034342/

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