Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to remove background drawable (@drawable/bg) programmatically, is there a way to do that? Currently I have the following XML codes 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"
>

Thanks a lot for any help. :)

share|improve this question
2  
I wonder why someone down-voted this one.. – Emkey Jul 28 '11 at 8:49

4 Answers

up vote 17 down vote accepted

Try this

RelativeLayout relative = (RelativeLayout) findViewById(R.id.widget29);
relative.setBackground(null);

Check the setBackground functions in the RelativeLayout documentation

share|improve this answer
1  
+1 good answer appriciate – Strivedi Jul 26 '11 at 7:31
2  
I get this error: The method setBackgroundResource(int) in the type View is not applicable for the arguments (null) – androidbloke May 13 '12 at 9:08
1  
In case that doesn't work: check if you've used the background property and not android:src! – Chris Conway Oct 16 '12 at 23:00
setBackgroundDrawable is now deprecated. @Suraj's answer below is better now. – Anand S Feb 17 at 11:19
@AnandS thanks, fixed. – Maragues Feb 18 at 8:05

This helped me remove background color, hope it helps someone. setBackgroundColor(Color.TRANSPARENT)

share|improve this answer
Excellent solution. Thanks! :) – Sufian Apr 3 at 7:59
@Sufian: Welcome! Glad that helped! – Suraj Bajaj Apr 3 at 19:54

first you have to write android:visibility="invisible" or set VISIBLE then use this for show it myimage.setVisibility(SHOW);/HIDE

share|improve this answer

I try this in android 4+:

 view.setBackgroundDrawable(0);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.