BlackBerry: TreeField with BitmapField

485 Views Asked by At

I want to display the contacts in a TreeField like:

An image followed by a username

My understanding is that I use a BitmapField to display the image, but I don't see how to combine a BitmapField with a TreeField.

3

There are 3 best solutions below

0
On

You can do it by using graphics.drawBitmap() method and graphics.drawText() method and using the index and y parameters inside the drawTreeItem() method of class which implements TreeFieldCallback interface

0
On

See my answer to a similar StackOverflow question: "Customising Blackberry Treefield."

In that answer, I've re-drawn each row of a TreeField along with a Bitmap image replacing the default (+)-icon of TreeField.

0
On

You can't use another field with a TreeField. You need to implement the TreeFieldCallback.drawTreeItem() method and do the drawing yourself