在 Android 中以编程方式删除背景可绘制对象
我想以编程方式删除背景可绘制 @drawable/bg
。 有办法做到这一点吗?
目前,我的布局中有以下 XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/widget29"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/bg">
</RelativeLayout>
I want to remove the background drawable @drawable/bg
programmatically.
Is there a way to do that?
Currently, I have the following XML in my layout:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
android:id="@+id/widget29"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/bg">
</RelativeLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(11)
首先,你必须用 XML 布局编写:
然后用 Java 来显示它:
First, you have to write in XML layout:
then use this to show it using Java:
我有一个案例场景,我尝试了上面的所有答案,但总是在旧图像之上创建新图像。对我有用的解决方案是:
I have a case scenario and I tried all the answers from above, but always new image was created on top of the old one. The solution that worked for me is:
使用
setBackgroundColor(Color.TRANSPARENT)
将背景设置为透明,或使用setBackgroundColor(0)
。这里Color.TRANSPARENT
是颜色类的默认属性。它会工作得很好。Use
setBackgroundColor(Color.TRANSPARENT)
to set the background as transparent, or usesetBackgroundColor(0)
. HereColor.TRANSPARENT
is the default attribute from color class. It will work fine.这对我来说工作:
This work for me:
除了出色的答案之外,如果您想通过 xml 实现此目的,那么您可以将:
android:background="@android:color/transparent
添加到您的视图中。
In addition to the excellent answers, if you want to achieve this via xml then you can add:
android:background="@android:color/transparent
to your view.
此方法的最佳性能:
使用此方法。
Best performance on this method :
Use this.
我在 android 4+ 中尝试此代码:
I try this code in android 4+:
试试这个代码:
这个也可以工作:
但是要小心这个不起作用:
Try this code:
also this one works:
but be careful this one doesn't work:
这帮助我去除了背景颜色,希望对某人有帮助。
setBackgroundColor(Color.TRANSPARENT)
This helped me remove background color, hope it helps someone.
setBackgroundColor(Color.TRANSPARENT)
setBackgroundResource(0)
是最好的选择。来自文档:它适用于任何地方,因为它是从 API 1 开始的。
setBackground
是在 API 16 中添加的,所以如果您的minSdkVersion
低于 16,它将不起作用。setBackgroundResource(0)
is the best option. From the documentation:It works everywhere, because it's since API 1.
setBackground
was added much later, in API 16, so it will not work if yourminSdkVersion
is lower than 16.试试这个
检查 RelativeLayout 文档 中的 setBackground 函数
Try this
Check the setBackground functions in the RelativeLayout documentation