Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在活动中使用 ImageButton 时,它会出现这样的背景颜色:
我该怎么做才能去除这种深色?
利用imageButton.setBackgroundColor(Color.TRANSPARENT);
imageButton.setBackgroundColor(Color.TRANSPARENT);
或者,如果您想在 XML 中执行此操作: android:background="@android:color/transparent"
android:background="@android:color/transparent"
如果您的 png 文件具有透明背景并且您想要透明背景,请将您的图像文件保存为 PNG 32 格式。