当前位置: 首页>>代码示例>>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;未经允许,请勿转载。