當前位置: 首頁>>代碼示例>>Java>>正文


Java Table類代碼示例

本文整理匯總了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;
}
 
開發者ID:codenameone,項目名稱:CodenameOne,代碼行數:34,代碼來源:CodenameOneMiGComponentWrapper.java

示例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;
}
 
開發者ID:codenameone,項目名稱:codenameone-demos,代碼行數:7,代碼來源:Components.java


注:本文中的com.codename1.ui.table.Table類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。