编程方式设置列表视图项的背景颜色(Programmatically set the backgrou

2019-10-16 12:42发布

在我的应用程序,我不得不自动设置的背景颜色ListView项目,根据该列表视图项的字符串内容。

目前,该应用程序是使用下面的代码:

    private void UpdateListView(string itemFromList, ListView listView)
    {
        int itemListPosition = listViewAdapter.GetPosition(itemFromList);
        listView.SetItemChecked(itemListPosition, true);

        View child = listView.GetChildAt(itemListPosition);

        if (child != null)
        {
            for (int i = 0; i < listViewAdapter.Count; i++)
            {
                View otherChild = listView.GetChildAt(i);

                if (otherChild != null)
                {
                    otherChild.SetBackgroundColor(defaultColor);
                }
            }

            child.SetBackgroundColor(Color.Green);
        }
    }

其中listViewAdapter是在一个全局变量MainActivity如下面所定义到类onCreate方法:

listViewAdapter= new ArrayAdapter<String>(this, Android.Resource.Layout.SimpleListItem1, settingItems);
listView.Adapter = listViewAdapter;

settingItems只是定义为一个字符串列表的全局变量。

上面的代码是工作的罚款,所以给定的列表视图项的背景颜色变为绿色和列表视图项目的默认颜色的休息,直到列表视图中添加一个垂直滚动到它。

现在列表视图后,得到了更多的项目和垂直滚动所有的时间

View child = listView.GetChildAt(itemListPosition);

child从上面的通话对象为null。 因此,我不能再根据它们的位置列表视图访问项目。 你知道我怎么能解决此问题?

Answer 1:

我写了一个演示GetView方法,设定该项目的背景颜色,你可以参考一下吧。

这是演示GIF。

你可以在更改代码GetView的ListView适配器的方法。 我不知道你要在列表视图要更改的项目,所以我设定1,3,5的位置。 你也可以自己修改。

MyAdapter.cs

   class MyAdapter : BaseAdapter<ColorDemo>
{
    Activity context;
    List<ColorDemo> colors { get; set; }
    public MyAdapter(Activity context , List<ColorDemo> colors)
    {
        this.context = context;
        this.colors = colors;

    }

    public override ColorDemo this[int position] {
        get
        {
            return colors[position];
        }
    }

    public override int Count => colors.Count;



    public override long GetItemId(int position)
    {
        return position;
    }

    public override View GetView(int position, View convertView, ViewGroup parent)
    {
        View newView = convertView;
        if (newView == null)
            newView = context.LayoutInflater.Inflate(Resource.Layout.ItemView, null);
        newView.FindViewById<TextView>(Resource.Id.item_tv).Text = colors[position].ColorName;
        if (position==1|| position == 3|| position == 5)
        {
            newView.FindViewById<TextView>(Resource.Id.item_tv).SetBackgroundColor( Color.Blue);

        }
        else
        {
            newView.FindViewById<TextView>(Resource.Id.item_tv).SetBackgroundColor(Color.Green);

        }

       return newView;

    }
}

以下是activity_main.axmlItemView.axml ,你可以自定义通过ItemView控件列表视图项

activity_main.axml

 <?xml version="1.0" encoding="utf-8"?>
 <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     xmlns:app="http://schemas.android.com/apk/res-auto"
     xmlns:tools="http://schemas.android.com/tools"
     android:layout_width="match_parent"
     android:layout_height="match_parent">

    <ListView
        android:layout_width="match_parent"
        android:layout_height="match_parent" 
        android:id="@+id/lv_color"
     />
  </RelativeLayout>

ItemView.axml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
  <TextView 
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="this text"
    android:textSize="50dp"
    android:id="@+id/item_tv"
    android:background="@android:color/holo_red_dark"
    />
</LinearLayout>

下面的代码是关系到MainActivity.cs

MainActivity.cs

    [Activity(Label = "@string/app_name", Theme = "@style/AppTheme", MainLauncher = true)]
public class MainActivity : AppCompatActivity
{
    protected override void OnCreate(Bundle savedInstanceState)
    {
        base.OnCreate(savedInstanceState);
        // Set our view from the "main" layout resource
        SetContentView(Resource.Layout.activity_main);
        ListView lv_color = FindViewById<ListView>(Resource.Id.lv_color);
       // lv_color.SetItemChecked(2,true);
        List<ColorDemo> colors = new List<ColorDemo>();
        colors.Add(new ColorDemo("red"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("red"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("red"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("red"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("red"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("red"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("green"));
        colors.Add(new ColorDemo("green"));

        MyAdapter myAdapter = new MyAdapter(this,colors);
        lv_color.Adapter=myAdapter;
    }
}


文章来源: Programmatically set the background color of a list view item