删除 android 中图像的白色背景
remove white background of image in android
我在 android.But 的框架布局中添加了内部图像,问题是我得到了白色 background.I 需要删除该白色 Background.Any 帮助将不胜感激.. ...
截图如下
xml 文件如下
<?xml version="1.0" encoding="UTF-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:background="@null"
android:maxWidth="-5dp"
android:maxHeight="-5dp"
android:src="@drawable/driveimg"
/>
</FrameLayout>
您可以将背景设置为空 (android:background="@null"
) 或使用透明颜色 (android:background="@android:color/transparent"
)
我在 android.But 的框架布局中添加了内部图像,问题是我得到了白色 background.I 需要删除该白色 Background.Any 帮助将不胜感激.. ...
截图如下
xml 文件如下
<?xml version="1.0" encoding="UTF-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="center"
/>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="left"
android:background="@null"
android:maxWidth="-5dp"
android:maxHeight="-5dp"
android:src="@drawable/driveimg"
/>
</FrameLayout>
您可以将背景设置为空 (android:background="@null"
) 或使用透明颜色 (android:background="@android:color/transparent"
)