Я хочу создать вид сетки, где всего 8 столбцов с изображением и текстом.Во-первых, я пытался использовать только динамические изображения, и все прошло успешно, но после добавления текстового представления я получаю ошибки.
Мой адаптер для вида сетки выглядит так:
public class ImageAdapter : BaseAdapter
{
Context context;
public ImageAdapter(Context c)
{
context = c;
}
public override int Count
{
get { return thumbIds.Length; }
}
public override Java.Lang.Object GetItem(int position)
{
return null;
}
public override long GetItemId(int position)
{
return 0;
}
// create a new ImageView for each item referenced by the Adapter
public override View GetView(int position, View convertView, ViewGroup parent)
{
ImageView imageView;
if (convertView == null) //to set layout
{ // if it's not recycled, initialize some attributes
imageView = new ImageView(context);
imageView.LayoutParameters = new GridView.LayoutParams(85, 85);
imageView.SetScaleType(ImageView.ScaleType.CenterCrop);
imageView.SetPadding(8, 8, 8, 8);
}
else
{
imageView = (ImageView)convertView;
}
imageView.SetImageResource(thumbIds[position]);
return imageView;
}
// references to our images
int[] thumbIds = {
Resource.Drawable.rsz_logo, Resource.Drawable.rsz_logo, //my image
Resource.Drawable.rsz_logo, Resource.Drawable.rsz_logo,
Resource.Drawable.rsz_logo, Resource.Drawable.rsz_logo,
Resource.Drawable.rsz_logo, Resource.Drawable.rsz_logo
};
}
Мой код здесь, и это только сгенерирует изображение без текста.