我在xamarin中使用自定义列表和适配器如何更改列表视图中最后一项的颜色
这是我尝试过的但没有用的
if (view.FindViewById<TextView> (Resource.Id.textView1).Text == "Add Profile") {
view.FindViewById (Resource.Id.linearLayout1).SetBackgroundColor (Android.Graphics.Color.Aqua);
Console.WriteLine ("LastItem");
}
答案 0 :(得分:1)
您可以通过覆盖适配器类下的GetView方法来更改列表项视图背景颜色。
public override View GetView(int position, View convertView, ViewGroup parent)
{
if(convertView == null)
{
convertView = LayoutInflater.From(this.context).Inflate('Your layout axml', parent, false);
}
convertView.SetBackgroundColor(Android.Graphics.Color.Aqua);
return convertView;
}