Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using Canvas.drawBitmap() to render a png file into a custom View that I created (creating my own custom button). Everything is working okay except that the PNG has a transparent background in photoshop, but it does not appear to be transparent in my android layout. The layout is a listview element.

I create the image with:

    `BitmapFactory.Options opt = new BitmapFactory.Options();
    opt.inPreferredConfig = Config.ARGB_8888;
    this.image = BitmapFactory.decodeResource(context.getResources(), imageResId, opt);`

I render the image with:

     `protected void onDraw(Canvas canvas)
     {
         canvas.drawColor(Color.TRANSPARENT); 
         canvas.drawBitmap(image, WIDTH_PADDING / 2, HEIGHT_PADDING / 2, null);
     }`

At the moment WIDTH_PADDING and HEIGHT_PADDING are both 0 but I don't think that is relevant.

The PNG itself is created in Photoshop. I just did New File --> Transparent Background --> And drew a red oval then saved as PNG.. The PNG shows up with White where I expect it to be transparent.

Photoshop File photoshop file

Android View photoshop file

I call it up in my xml with:

com.busanbar.busanbardev.pmchat.PMCommentResendButton  
android:id="@+id/resendButton"  
android:layout_width="wrap_content"  
android:layout_height="wrap_content"  
android:focusable="true"  
android:focusableInTouchMode="true"  
android:layout_weight="1"  

How can I make the white go transparent so I can see the gray background texture in my listview container?

share|improve this question
1  
Did you ever get a solution to this problem? I am having the same problem trying to draw to a canvas. – Brian Griffey Nov 27 '12 at 20:39

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.