本文整理匯總了Java中com.codename1.ui.table.Table類的典型用法代碼示例。如果您正苦於以下問題:Java Table類的具體用法?Java Table怎麽用?Java Table使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Table類屬於com.codename1.ui.table包,在下文中一共展示了Table類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: checkType
import com.codename1.ui.table.Table; //導入依賴的package包/類
private int checkType(boolean disregardScrollPane)
{
Component c = this.c;
if (c instanceof TextField) {
return TYPE_TEXT_FIELD;
} else if (c instanceof Label) {
return TYPE_LABEL;
} else if (c instanceof RadioButton || c instanceof CheckBox) {
return TYPE_CHECK_BOX;
} else if (c instanceof Button) {
return TYPE_BUTTON;
} else if (c instanceof ComboBox) {
return TYPE_COMBO_BOX;
} else if (c instanceof TextArea) {
return TYPE_TEXT_AREA;
} else if (c instanceof Container) {
return TYPE_PANEL;
} else if (c instanceof List) {
return TYPE_LIST;
} else if (c instanceof Table) {
return TYPE_TABLE;
} else if (c instanceof BaseSpinner) {
return TYPE_SPINNER;
} else if (c instanceof Tabs) {
return TYPE_TABBED_PANE;
} else if (c instanceof InfiniteProgress) {
return TYPE_PROGRESS_BAR;
} else if (c instanceof Slider) {
return TYPE_SLIDER;
}
return TYPE_UNKNOWN;
}
示例2: createTableDemo
import com.codename1.ui.table.Table; //導入依賴的package包/類
private Container createTableDemo() {
Container tableContainer = new Container(new BoxLayout(BoxLayout.Y_AXIS));
Table dt = new Table();
tableContainer.addComponent(dt);
return tableContainer;
}