本文整理匯總了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());
}
示例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());
}
示例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());
}
示例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());
}
示例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);
}
}
示例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;
}
示例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);
}
}
示例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;
}
}
示例9: DribbbleDataAdapter
import com.comcast.freeflow.core.Section; //導入依賴的package包/類
public DribbbleDataAdapter(Context context) {
this.context = context;
section = new Section();
section.setSectionTitle("Pics");
}
示例10: getSection
import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public Section getSection(int index) {
return section;
}
示例11: getSections
import com.comcast.freeflow.core.Section; //導入依賴的package包/類
public ArrayList<Section> getSections() {
return sections;
}
示例12: getSection
import com.comcast.freeflow.core.Section; //導入依賴的package包/類
@Override
public Section getSection(int index) {
return sections[index];
}