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


Java Section類代碼示例

本文整理匯總了Java中com.comcast.freeflow.core.Section的典型用法代碼示例。如果您正苦於以下問題:Java Section類的具體用法?Java Section怎麽用?Java Section使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Section類屬於com.comcast.freeflow.core包,在下文中一共展示了Section類的12個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getContentWidth

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public int getContentWidth() {
	if (itemsAdapter == null || itemsAdapter.getNumberOfSections() <= 0){
		return 0;
	}

	int sectionIndex = itemsAdapter.getNumberOfSections() - 1;
	Section s = itemsAdapter.getSection(sectionIndex);

	if (s.getDataCount() == 0)
		return 0;

	Object lastFrameData = s.getDataAtIndex(s.getDataCount() - 1);
	FreeFlowItem fd = proxies.get(lastFrameData);

	return (fd.frame.left + fd.frame.width());
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:18,代碼來源:HLayout.java

示例2: getContentWidth

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public int getContentWidth() {
	if (itemsAdapter == null  || itemsAdapter.getNumberOfSections() <= 0){
		return 0;
	}
	
	int sectionIndex = itemsAdapter.getNumberOfSections() - 1;
	Section s = itemsAdapter.getSection(sectionIndex);

	if (s.getDataCount() == 0)
		return 0;

	Object lastFrameData = s.getDataAtIndex(s.getDataCount() - 1);
	FreeFlowItem fd = proxies.get(lastFrameData);

	return (fd.frame.left + fd.frame.width());
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:18,代碼來源:HGridLayout.java

示例3: getContentHeight

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public int getContentHeight() {
	if (itemsAdapter == null || itemsAdapter.getNumberOfSections() <= 0){
		return 0;
	}
		
	int sectionIndex = itemsAdapter.getNumberOfSections() - 1;
	Section s = itemsAdapter.getSection(sectionIndex);

	if (s.getDataCount() == 0)
		return 0;

	Object lastFrameData = s.getDataAtIndex(s.getDataCount() - 1);
	FreeFlowItem fd = proxies.get(lastFrameData);

	return (fd.frame.top + fd.frame.height());
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:18,代碼來源:VLayout.java

示例4: getContentHeight

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public int getContentHeight() {
	if (itemsAdapter == null || itemsAdapter.getNumberOfSections() <= 0){
		return 0;
	}

	int sectionIndex = itemsAdapter.getNumberOfSections() - 1;
	Section s = itemsAdapter.getSection(sectionIndex);

	if (s.getDataCount() == 0)
		return 0;

	Object lastFrameData = s.getDataAtIndex(s.getDataCount() - 1);
	FreeFlowItem fd = proxies.get(lastFrameData);
	if(fd==null){
		return 0;
	}
	return (fd.frame.top + fd.frame.height());
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:20,代碼來源:VGridLayout.java

示例5: ImageAdapter

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
public ImageAdapter() {
	for (int i = 0; i < 10; i++) {
		Section s = new Section();

		s.setSectionTitle("Section " + i);
		for (int j = 0; j < 10; j++) {
			s.addItem(new Object());
		}
		sections.add(s);
	}
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:12,代碼來源:MainActivity.java

示例6: getSection

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public Section getSection(int index) {
	if (index < sections.size() && index >= 0)
		return sections.get(index);

	return null;
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:8,代碼來源:MainActivity.java

示例7: setData

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
public void setData(int headerCount, int itemCount) {
	sections.clear();
	for (int i = 0; i < headerCount; i++) {
		Section s = new Section();
		s.setSectionTitle("Section " + i);
		for (int j = 0; j < itemCount; j++) {
			s.addItem(new Object());
		}
		sections.add(s);
	}

}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:13,代碼來源:DefaultSectionAdapter.java

示例8: SampleDataAdapter

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
public SampleDataAdapter() {
	for(int i=0; i<sectionCount; i++){
		Section s = new Section();
		s.setSectionTitle("Section "+i);
		for(int j=0; j< 5; j++){
			s.addItem( new Item("Item "+i+" / "+j ));
		}
		sections[i]  = s;
	}
}
 
開發者ID:arpit,項目名稱:BasicFreeFlowProject,代碼行數:11,代碼來源:SampleDataAdapter.java

示例9: DribbbleDataAdapter

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
public DribbbleDataAdapter(Context context) {
	this.context = context;
	section = new Section();
	section.setSectionTitle("Pics");
	
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:7,代碼來源:DribbbleDataAdapter.java

示例10: getSection

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public Section getSection(int index) {
	return section;
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:5,代碼來源:DribbbleDataAdapter.java

示例11: getSections

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
public ArrayList<Section> getSections() {
	return sections;
}
 
開發者ID:weiwenqiang,項目名稱:GitHub,代碼行數:4,代碼來源:DefaultSectionAdapter.java

示例12: getSection

import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public Section getSection(int index) {
	return sections[index];
}
 
開發者ID:arpit,項目名稱:BasicFreeFlowProject,代碼行數:5,代碼來源:SampleDataAdapter.java


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