如何为我的结构获得无限数量的项目

时间:2014-04-10 14:58:50

标签: java android list android-listview

  Article article = null;
  Article article2 = null;
  Article article3 = null;
  if (position == 0)
  {
  article = getItem(0);
  article2 = getItem(1);
  article3 = getItem(2);
  }
  else if (position == 1)
  {
  article = getItem(3);
  article2 = getItem(4);
  article3 = getItem(5);
  }
  else if (position == 2)
  {
      article = getItem(6);
      article2 = getItem(7);
      article3 = getItem(8);
  }

我需要像这样获得我的项目列表,但直到第90项(位置)我才能这样做。 我怎样才能无限次地编写这些代码。

1 个答案:

答案 0 :(得分:2)

  

我需要得到这样的项目列表,但直到90日我都不能这样做   项(位置)。我怎样才能无限次地编写这些代码。

你可以这样做:

article = getItem((position * 3));
article2 = getItem((position * 3) + 1);
article3 = getItem((position * 3) + 2);

这是一个简单的解决方案,可以帮到你。