Android settings listview item color in alternate arrangement

Source: Internet
Author: User

//Viewholder the item, holding the position will change with the sliding of the ListView//if ((viewholder.getposition () + 1)% 2 = = 0) {//int color = COLOR.ARGB (255, 101, 181, 109);//Viewholder.getconvertview (). SetBackgroundColor (color);//} else {//int color = COLOR.ARGB (255, 255, 255, 255);//Viewholder.getconvertview (). SetBackgroundColor (color);//        }        /** The position parameter is not changed with the sliding of the ListView, even if the Viewholder reuse item changes, * The position of the item that sets the color will not change, so you can set the item's color Alternate arrangement **///if (position% 2 = = 0) {//int color = COLOR.ARGB (255, 255, 255, 255);//Viewholder.getconvertview (). SetBackgroundColor (color);//} else {//int color = COLOR.ARGB (255, 101, 181, 109);//Viewholder.getconvertview (). SetBackgroundColor (color);//        }//there is no loop here, because the GetView method itself will loop the ListView to draw item, where the//loops I and position are equivalent, and the value of I is the value of position//for (int i = 0; i < GetCount (); i++) {//if (position = = i) {//if (i% 2 = = 0) {//int color = COLOR.ARGB (255, 255, 255, 255);//Viewholder.getconvertview (). SetBackgroundColor (color);//} else {//int color = COLOR.ARGB (255, 101, 181, 109);//Viewholder.getconvertview (). SetBackgroundColor (color);//                }//            }//        }

Android settings listview item color in alternate arrangement

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.