在Android应用程序中突出显示水平ListView中的图像背景

时间:2016-07-20 07:56:42

标签: android

在我的项目中,当我从水平列表视图中选择一个图像时它会突出显示,但是当我选择另一个图像时,第一个选定的图像也会突出显示..我想一次只能突出显示一个图像。请帮帮我。

这是我的选择代码,

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

xml代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/parentchillayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/selector"
android:padding="2dp"
android:layout_marginLeft="5dp"
android:layout_marginTop="5dp"
android:orientation="vertical" >
<ImageView
            android:id="@+id/Iv_front"
            android:layout_width="80dp"
            android:padding="1dp"
            android:background="@null"
            android:layout_height="80dp"
            android:src="@drawable/bag"
    /></LinearLayout>

java代码:

public void onItemClick(AdapterView<?> arg0, View arg1,int pos,long arg3)
        { arg1.setSelected(true);
          Iv_Product.setImageResource(data.get(pos));
            position = pos;
        }

3 个答案:

答案 0 :(得分:0)

您的选择器代码本身会提到这个条件。

<item android:state_selected="false" ... />

答案 1 :(得分:0)

首先更新你selector code

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_focused="true" android:drawable="@color/black" /> <!-- focused -->
    <item android:state_focused="true" android:state_pressed="true" android:drawable="@color/black" /> <!-- focused and pressed-->
    <item android:state_pressed="true" android:drawable="@color/green" /> <!-- pressed -->
    <item android:drawable="@color/black" /> <!-- default -->
</selector>

删除此代码无需执行此操作。

public static int mSelectedItem =-1; // declare it as global vaiable
public void onItemClick(AdapterView<?> arg0, View arg1,int pos,long arg3)
        { 
            mSelectedItem = position;
            mAdapter.notifyDataSetChanged();

        }

跟踪你的getView of position和setbackground

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        final View view = View.inflate(context, R.layout.item_list, null);

        if (position == mSelectedItem) {
            // set your color
            view.setBackgroundColor(Color.CYAN);
        }

        return view;
    }

答案 2 :(得分:0)

我找到了解决方案,在这里我分享它,以便它对某人有用。

for(int i=0; i<parent.getChildCount(); i++)
    {
      if(i == position)
{ parent.getChildAt(i).setBackgroundResource(R.drawable.red);
}
else { parent.getChildAt(i).setBackgroundResource(R.drawable.white);
} }