【发布时间】:2011-11-24 23:26:56
【问题描述】:
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List6.html
在上面的链接中,如何将颜色设置为 mTitles 字符串。
【问题讨论】:
-
你的问题不太清楚
标签: android
http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/view/List6.html
在上面的链接中,如何将颜色设置为 mTitles 字符串。
【问题讨论】:
标签: android
你应该可以在 getview 函数中做类似的事情
TextView title = (TextView)sv.getChildAt(0);
title.setBackgroundColor(Coor.RED);
【讨论】: