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?
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