0
我正在開發一個基於UI的應用程序,其中我需要在2x2表中顯示錶格中的數據,意思是2行和2列。在5.0 OS中創建黑莓桌面視圖?
我已經看到黑莓OS 6.0的表視圖類的使用,但我的應用程序也會在5.0操作系統上運行。 請指導我在黑莓中生成一個自定義表格視圖。
Thanx提前...!
我正在開發一個基於UI的應用程序,其中我需要在2x2表中顯示錶格中的數據,意思是2行和2列。在5.0 OS中創建黑莓桌面視圖?
我已經看到黑莓OS 6.0的表視圖類的使用,但我的應用程序也會在5.0操作系統上運行。 請指導我在黑莓中生成一個自定義表格視圖。
Thanx提前...!
使用此代碼作爲指導。
GridFieldManager grid = new GridFieldManager(2,2,0); //First parameter for row,second for column
grid.add(new LabelField("Column 1")//Give a heading to your grid field
{
public void paint(Graphics graphics)
{
graphics.setColor(Color.RED);
super.paint(graphics);
}
});
grid.add(new LabelField("Column 2")
{
public void paint(Graphics graphics)
{
graphics.setColor(Color.RED);
super.paint(graphics);
}
});
grid.setColumnPadding(30);
grid.setRowPadding(30);
add(grid);
您也可以參考BB文檔中的示例。
是否嘗試過網格佈局http://docs.blackberry.com/zh/developers/deliverables/11958/Create_grid_layout_877557_11.jsp – Aditya