更改listview中第一项的样式

时间:2014-05-08 07:49:23

标签: android android-listview android-ui

我在listView中有一个项目列表。我想突出显示此列表视图的第一项,以便用户知道顶级项目是活动的。我该怎么做呢? 类似图像enter image description here

1 个答案:

答案 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);
    }