我正在创建一个在中心有一个ImageButton的应用。问题是我没有在图像按钮内获得透明图像,即使图像是纯PNG格式。
我的Xml如下
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="switchmode.lteonly.lteonlyswitch.MainActivity"
tools:showIn="@layout/app_bar_main">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/imageButton"
android:clickable="true"
android:layout_centerVertical="true"
android:layout_centerInParent="true"
android:src="@drawable/myimage"
android:onClick="onClick"/>
</RelativeLayout>
输出布局如下。
任何想法如何解决这个问题?
答案 0 :(得分:3)
在ImageButton
布局
android:background="@android:color/transparent"
答案 1 :(得分:1)
将其添加到ImageButton
android:background="@null"
答案 2 :(得分:0)
1)我猜你的png文件不透明。 (只是因为它的PNG并不意味着,背景是透明的)。检查图片中是否有alpha通道,图像本身没有backgroundcolor。
2)如果此图像实际上是透明的,请尝试添加
android:background="@android:color/transparent"
到ImageButton
答案 3 :(得分:0)
Add this to your imageButton
android:background="#00000000"