Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<ImageButton android:id="@+id/previous"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/media_skip_backward"
android:background="@drawable/transparent"></ImageButton>

This is what I tried to get a transparent ImageButton so as to place those buttons on a SurfaceView. But Eclipse, gives me an error in the project as soon as I include the transparent line in xml.

Please help.

share|improve this question
2  
just a side note: instead of your own transparent image, you could generally also just use @android:color/transparent - no need for your own custom transparent image – Mathias Lin Aug 4 '10 at 5:42
Please note that by giving the image button a transparent background, you're removing a visual feedback for button clicked (and probably disabled) state. This results in a slight decrease of usability. – szeryf Jan 4 at 18:19

7 Answers

up vote 289 down vote accepted

Try using null for the background ...

android:background="@null"
share|improve this answer
Thank you. This works. Only the image is seen and not the box around it. But can I lay this button over the SurfacaView ie over the video preview? Is this possible? How do I do it? – Namratha Aug 4 '10 at 5:43
1  
@Namratha The SurfaceView should allow you to blace your buttons over a surface but note: "This can be used to place overlays such as buttons on top of the Surface, though note however that it can have an impact on performance since a full alpha-blended composite will be performed each time the Surface changes." from developer.android.com/reference/android/view/SurfaceView.html – Quintin Robinson Aug 4 '10 at 6:02
Thanks, it worked for me too. – Creator Dec 9 '11 at 1:55

You can also use a transparent color:

android:background="@android:color/transparent"
share|improve this answer
This is probably the better answer. – Adam Feb 8 at 0:03
@Geykel, @Adam, you should be aware that this attribute is quite dangerous when used unconditionally since it will add another transparent layer that will get drawn to the screen and might result in overdrawn pixels and slow your application. In order to test it, you can use the Developer option: Show GPU overdraw and see the difference between setting a background to @null and @android:color/transparent. – amirlazarovich Mar 6 at 9:30

in run time, you can use following code

btn.setBackgroundDrawable(null);
share|improve this answer
btn.setBackgroundColor(Color.TRANSPARENT); Works on all API levels – AlBeebe Apr 3 at 16:37

Remove this line :

android:background="@drawable/transparent">

And in your activity class set

ImageButton btn = (ImageButton)findViewById(R.id.previous);
btn.setAlpha(100);

You can set alpha level 0 to 255

o means transparent and 255 means opaque.

share|improve this answer
But does this enable the button to lie on top of the SurfaceView? – Namratha Aug 4 '10 at 5:35
Most probably it should work. Just check it out. – Nishant Shah Aug 4 '10 at 5:41
4  
This answer is wrong and misleading as it makes the entire button semi-opaque. If wishing to do this from code then pass null to the setBackground method. setAlpha is not what you need. – Quintin Willison Aug 3 '11 at 12:29
It makes the whole view transparent. – rsman Sep 9 '11 at 13:36

Setting the background to "@null" will make the button have no effect when clicked. This will be a better choice.

style="?android:attr/borderlessButtonStyle"
share|improve this answer
<ImageButton
    android:id="@+id/previous"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/media_skip_backward">
</ImageButton>

I used a transparent png for the ImageButton, and the ImageButton worked.

share|improve this answer

Use ImageView... it have transparent background by default...

share|improve this answer
1  
But it's not a button – Moesio Mar 13 at 18:50

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.