我在我的应用中使用了一个图像,我知道它是透明背景PNG。在android studio中它正确地预呈现它,但在VM中它获得了白色背景..任何人都知道我做错了什么?
我的xml片段;
<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>
答案 0 :(得分:1)
尝试
android:background="@null"
在ImageView中