gpt4 book ai didi

Android 透明度不适用于 PNG

转载 作者:行者123 更新时间:2023-11-30 02:09:57 29 4
gpt4 key购买 nike

我在我的应用程序中使用了一个图像,我知道它是透明背景 PNG。在 android studio 中它会正确预渲染它,但在 VM 中它会得到一个白色背景。任何人都知道我做错了什么吗?

我的 xml fragment ;

<ImageView
android:id="@+id/fullscreen_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerInside"
android:background="@android:color/transparent"
android:adjustViewBounds="true"
android:gravity="center"
android:src="@drawable/jlogo2"
/>

来自

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:background="#ff19cc00"
tools:context=".FullscreenActivity">

<!-- The primary full-screen view. This can be replaced with whatever view
is needed to present your content, e.g. VideoView, SurfaceView,
TextureView, etc. -->


<ImageView
android:id="@+id/fullscreen_content"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerInside"
android:background="@android:color/transparent"
android:adjustViewBounds="true"
android:gravity="center"
android:src="@drawable/jlogo2"
/>


<!-- This FrameLayout insets its children based on system windows using
android:fitsSystemWindows. -->
<FrameLayout android:layout_width="match_parent" android:layout_height="match_parent"
android:fitsSystemWindows="true">

<LinearLayout android:id="@+id/fullscreen_content_controls" style="?metaButtonBarStyle"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_gravity="bottom|center_horizontal"
android:background="@color/black_overlay" android:orientation="horizontal"
tools:ignore="UselessParent">


<Button android:id="@+id/dummy_button" style="?metaButtonBarButtonStyle"
android:layout_width="0dp" android:layout_height="wrap_content"
android:layout_weight="1" android:text="@string/dummy_button" />

</LinearLayout>
</FrameLayout>

</FrameLayout>

最佳答案

尝试

android:background="@null"

在你的 ImageView 中

关于Android 透明度不适用于 PNG,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30237961/

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