0

Is it possible to create a customized list field in BB, where each row will have 4 different labels, and a bitmap field, without implementing the drawListRow method?

Since drawListRow uses canvas I want to avoid it. Because, I need to display a browser field in list row. Or is it possible to add label fields in list row?

Michael Donohue
  • 11,776
  • 5
  • 31
  • 44
Hades
  • 75
  • 1
  • 12

1 Answers1

1

You probably aren't going to be able to implement this the way you want - try putting more than one BrowserField on a screen at once and you'll soon run into multiple issues. I'd suggest creating a custom Field to act as a row instead, or try and get the desired look n feel using Field Managers.

Jonathan Fisher
  • 380
  • 1
  • 5
  • Hey Jonathan, you are right, more than 1 browser fields, do create a problem. Is there a way, to wrap text, for list row, in the method drawListRow(), where we have to use the paint object. – Hades Oct 29 '12 at 05:21
  • You need to implement your own text wrapping logic. – Rupak Oct 29 '12 at 09:02