自定义适配器,所选项目背景

时间:2013-10-16 05:20:48

标签: java android android-custom-view

我有自定义适配器视图的问题。 我尝试在view事件中更改Click的背景。 我有AdapterView.OnItemClickListener,其中我选择了商品,并致电myListView.invalidate();

无效后,请致电adapters getView(...)。这里是代码:

@覆盖     public View getView(int position,View convertView,ViewGroup parent){

    View row = convertView;
    ProjectAdapterData projectItem;


    if (row == null) {

        LayoutInflater inflater = LayoutInflater.from(context);
        row = inflater.inflate(R.layout.project_small_item_layout, null);

        ProjectAdapterData projectAdapterData = new ProjectAdapterData();

        row.setTag(projectAdapterData);
        name = (TextView)row.findViewById(R.id.txtObjectName);
        if (objectData[position].Name!= null)
            name.setText(objectData[position].Name);
        adress = (TextView)row.findViewById(R.id.txtObjectAdress);
        if (objectData[position].Adress != null)
            adress.setText(objectData[position].Adress);
    }
    else {
        background = (RelativeLayout)row.findViewById(R.id.rlProjectBackground);
        if (objectData[position].isSelected)
            background.setBackgroundColor(context.getResources().getColor(R.color.cProjectSelected));
        else
            background.setBackgroundResource(R.color.cProjectUnSelected); //it's calls, but no result
        row.invalidate();
    }
    return row;
}

我的问题,为什么背景不会改变?

我的selector_list         

    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:state_selected="true"
          android:color="@color/cProjectSelected"/>
        <item android:state_selected="false"
          android:color="@color/cProjectUnSelected"/>
    </selector>

1 个答案:

答案 0 :(得分:10)

您可以使用选择器突出显示项目

在drawable文件夹中创建一个xml文件

list_selector.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" android:exitFadeDuration="@android:integer/config_mediumAnimTime">

    <item android:drawable="@color/blue" android:state_activated="true"/>
    <item android:drawable="@color/blue" android:state_selected="true"/>
    <item android:drawable="@color/transparent"/>

</selector>

并在列表视图中为xml设置listSelector,如

android:listSelector="@drawable/list_selector"

color.xml

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <color name="BLACK">#000000</color>
    <color name="WHITE">#FFFFFF</color>
    <color name="light_grey">#a5acb0</color>
    <color name="brown">#525964</color>
    <color name="dark_grey">#212121</color>
    <color name="aqua">#a6b1ba</color>
    <color name="red_cherry">#C9282D</color>
    <color name="silver">#A9A9A9</color>
    <color name="black">#000000</color>
    <color name="transparent">#00000000</color>
    <color name="white">#FFFFFF</color>
    <color name="blue">#00aceb</color>
    <color name="spiritclips_bck">#8AB8E0</color>
    <color name="translucent_black">#55000000</color>
    <color name="grid_bck">#627583</color>
    <color name="grey">#393430</color>
    <color name="dark_grey_bg">#1f1c17</color>
    <color name="login_font_color_1">#546778</color>
    <color name="login_font_color_2">#8E8E8E</color>
    <color name="blue_txt">#0f5690</color>

</resources>

对于custom_list_item,布局应该是

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="?android:attr/activatedBackgroundIndicator" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:textStyle="bold" />

</LinearLayout>
  

应用程序的最低版本应为11

enter image description here