|
|
|
Android การใส่สี Background Color ให้ Listview แต่ละแถวสลับกัน ใครมีวิธีช่วยแนะนำหน่อยครับ...... |
|
|
|
|
|
|
|
ได้แล้วครับ
ผมดูตามวิธีนี้ครับ http://emumair.wordpress.com/2011/09/26/creating-an-alternate-colored-list-view-in-android/
หลักๆมีอยู่ 2 ส่วน
1. การ declear
private final int[] bgColors = new int[] { R.color.green, R.color.violet };
2. ใส่ส่วนนี้
int colorPosition = position % bgColors.length;
convertView.setBackgroundResource(bgColors[colorPosition]);
ไว้ใน method View getView(final int position, View convertView, ViewGroup parent)
เป็นอันเรียบร้อยครับ
|
|
|
|
|
Date :
2013-04-26 01:40:55 |
By :
maximumoflove |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
จัดไปครับ
|
|
|
|
|
Date :
2013-04-26 06:01:10 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|