Android,listView项目& ColorStateList

时间:2012-03-08 11:33:23

标签: android listview colors

还记得ColorStateList xml吗?如果您处于此状态,则指定给视图使用此颜色:

类似的东西:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
    <item
        android:color="hex_color"
        android:state_pressed=["true" | "false"]
        android:state_focused=["true" | "false"]

如何通过代码强制执行:“嘿视图!您现在处于此状态!显示相应!!” ??

我的问题是列表视图。我希望孩子看起来像点击/选中,这两行似乎都不起作用:

m_listView.getChildAt(0).requestFocus();
m_listView.getChildAt(0).setPressed(true);

1 个答案:

答案 0 :(得分:0)

忘了这个.. 解决方案是:

m_ItemsListView.setItemChecked(0,true);