Можно ли создать ListView, в котором каждая строка в списке представляет собой уникальный макет (вы не знаете структуру макета, поскольку он динамически генерируется во время выполнения)?
edit:
Так что мои строки могут выглядеть примерно так:
- [---] [-------] [-] [----------------]
- [-------] [----------][-------------]
- [-] [-------] [----------] [----------]
и т. Д. (Предположим, что правая сторона выровнена).Каждый из них, скорее всего, будет уникальным.Я знаю, что ListView предполагает, что структура переработанного представления такая же, как у каждого элемента строки, но есть ли способ использовать ListView для динамически создаваемых строк?
public View getView(int position, View convertView, ViewGroup parent) {
// TODO Auto-generated method stub
ViewHolder holder = null;
if (convertView == null) {
convertView = mInflater.inflate(R.layout.guide_program_row, null);
holder = new ViewHolder();
holder.programRow = (LinearLayout)convertView.findViewById(R.id.program_row);
Log.i(TAG, "New Row; position = " + position);
}
else {
Log.i(TAG, "Cached Row; position = " + position);
holder = (ViewHolder)convertView.getTag();
}
holder.programRow.addView(buildRow(programLengths));
return convertView;
}
static class ViewHolder {
LinearLayout programRow;
}
public LinearLayout buildRow(int [] programLengthRow) {
Display display = getWindowManager().getDefaultDisplay();
int screenWidth = display.getWidth();
int screenHeight = display.getHeight();
int programCellWidth = screenWidth / 5;
int programCellHeight = (int)(screenHeight * 0.6 / 9);
int timeLeft = maxTimes;
LinearLayout programRow = new LinearLayout(getApplicationContext());
for (int j = 0; j < maxTimes; j++) {
if (timeLeft <= 0)
break;
Movie movie = movieList.get(j);
LinearLayout programCell = (LinearLayout)mInflater.inflate(R.layout.guide_program_cell, null);
TextView programText = (TextView)programCell.findViewById(R.id.program_cell_text);
if (programLengthRow[j] > timeLeft) {
programCell.setLayoutParams(new LinearLayout.LayoutParams(programCellWidth * timeLeft, programCellHeight));
programText.setText(movie.title + " >>");
}
else {
programCell.setLayoutParams(new LinearLayout.LayoutParams(programCellWidth * programLengthRow[j], programCellHeight));
programText.setText(movie.title);
}
timeLeft = timeLeft - programLengthRow[j];
programRow.addView(programCell);
}
return programRow;
}