Reputation:
I am working on blackberry application, I need to align the buttons side by side, can you please give me a sample code
Thanking you
Upvotes: 0
Views: 476
Reputation: 420
you can use grid layout manager , refer the following link
http://www.thinkingblackberry.com/archives/116
Upvotes: 0
Reputation: 2279
final class MyScreen extends MainScreen {
MyScreen() {
HorizontalFieldManager hfm = new HorizontalFieldManager();
hfm.add(new ButtonField("button1"));
hfm.add(new ButtonField("button2"));
add(hfm);
}
}
Upvotes: 2
Reputation: 7665
Seems you want to add those buttons to HorizontalFieldManager before adding to your Screen.
Upvotes: 0