05-04-2012 05:56 AM
Hi all,
I have to make a screen that contain two field, text foreground bitmapfield like the image exemple
pls HELP
05-05-2012 11:12 AM
please HELP please
05-06-2012 12:33 AM
Hi
Can you please elaborate your issue.
Pawan
Thanks
05-06-2012 06:52 AM
Hello,
I have two fields, the field with image, and the second with text (In the example : Hareem Sultan Vendredi ......)
I have to add the first field (Image) on a screen, and I want to add the second field foreground the first field (image) with transparency style like the example
Help Pls
05-06-2012 08:53 AM
Hi,
1) Take a image first put it into the background of MainScreen.
2) Take a manager,
2.1) Take a transparent image according to your look so that the (MainScreen) background images should be visible. And put this into the background of the manager.
2.2) Take a LabelField and add it into this manager.
Thanks
Pawan
05-06-2012 09:07 AM
pls I am beginner in blackberry dev , post for me the source code
pls
05-06-2012 12:35 PM
I think an easier solution is to take a BitmapField, and override its paint() method to paint the Bitmap (image) and the paint the text over the top. This is actually not that hard, but you need to have the BitmapField correct first. So Create a Screen which displays the image you want first, then we can help you put the text over the top.
05-13-2012 05:55 AM
Help pls source code
05-13-2012 11:00 AM
Better for you to give it a try and see how you go. Just take a standard BitmapField, then override paint(). Call super.paint, then try to do some of your own painting using the various methods available in thr Graphics class.
Good luck.