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

I am using BrowserField component of RIM BB. It is right now displaying a white background. I want make a transparent background, so it could match with the Manager's background color.

I had tried with below code. But it's not working.

BrowserField contentField = new BrowserField();
bgTransparent = BackgroundFactory.createSolidTransparentBackground(0xffffff, 0);    
contentField.setBackground(bgTransparent);

How to solve this?

share|improve this question
will you try this ? setBackground(BackgroundFactory.createSolidBackground(Color.BLACK)) – Signare Sep 14 '12 at 9:25
setBackground(BackgroundFactory.createSolidBackground(Color.BLACK)) is not working. – nisha.113a5 Sep 14 '12 at 9:38
1  
Check documentation of the method setBackground(int color) here, blackberry.com/developers/docs/6.0.0api/net/rim/device/api/…. It says that, color - the color to set the background to (in the form: 0xRRGGBB), and the value of color doesn't have any alpha value. – Rupak Sep 14 '12 at 13:42
I applied this but its not working... :( – nisha.113a5 Sep 14 '12 at 14:18
This isn't exactly making the background transparent, but if you are just looking to match the underlying background, you can see this similar question for a workaround. – Nate Mar 4 at 8:48

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.