Currently I have 4 bitmap buttons in my application. I want to have something like Label/Name for each of the buttons so that whenever someone focus on the particular button, the name appears somewhere on the screen. It could be on top, below the buttons or anywhere will do.
How can I do this? I tried searching for bitmap button field labelling but I found nothing really helpful.
you can put a CustomLabelField below button fields. Override your ButtonFields
onFocus(int direction)andonUnfocus()methods. Inside them invokesetLabel(String label)method of your CustomLabelFieldEDIT (after comments)
You can use this custom button and add your additional features in it. I did not try if this is working, but should work.