0

我想将具有 5 个属性(列)和 10 行数据的列表绑定到 GridView。我发现的例子都有一个 ImageAdapter。

如何将列表中的对象属性绑定到 GridView?我需要什么样的适配器?

4

1 回答 1

0

我不知道这是否对您有帮助,但是当我需要自定义控件时,我会设置所有信息来填充自定义 axml,如果您习惯于 WindowsPhone 或 Windows 8 应用程序,它就像一个用户控件

        LinearLayout linearImages = FindViewById<LinearLayout>(Resource.Id.LinearLayoutImages);

        LayoutInflater layoutInflater = (LayoutInflater)LayoutInflater.Context.GetSystemService(Context.LayoutInflaterService);

        foreach (Image image in images)
        {
            var view = layoutInflater.Inflate(Resource.Layout.ImageControl, null);

            TextView txtView = view.FindViewById<TextView>(Resource.Id.textView);
            txtView.Text = image.Title;

            ...

            linearImages.AddView(view);
       }
于 2013-01-14T13:19:50.293 回答