我在listView中有一个项目列表。我想突出显示此列表视图的第一项,以便用户知道顶级项目是活动的。我该怎么做呢? 类似图像
答案 0 :(得分:1)
尝试一些像tha: 创建自定义列表视图适配器,以及Custom adapter for a list of items that have multiple child items? 然后像那样设置bg:
if (position == 0) {
// define layout here list 1st item
view.setBackground(R.drawable.bg);
} else {
// others
view.setBackground(R.drawable.bg);
}