Просмотр сетки с использованием arraylist в Android

#android

#Android

Вопрос:

Как отобразить данные gridview с использованием списка массивов

Ответ №1:

Давайте предположим, что у вас есть ArrayList: values ;
В вашем GridView адаптере, вы переопределяете getView метод:

 @Override
public View getView(int position, View convertView, ViewGroup parent)
{
    convertView = new TextView(parent.getContext());
    // you can also inflate, if your cell has a more complex layout:
    // convertView = inflater.inflate(R.layout.grid_cell, parent, false);
    ((TextView)convertView).setText(values.get(position));
    // or if you've inflated your convertView, select it's text view and add the text to it:
    // ((TextView) convertView.findViewById(R.id.cell)).setText(values.get(position));
    return convertView;
}