How i can change image in ListView on click?

Change Button Background in ListView when button is click

  • I have one listview.which contain one image ,text and one button .i had creted custom listview for that.now i want to change background image of button when button is clicked.i got an click event in getView method of my CustomAdapter.but i m not able to change the background image. please help me. following is my code of getView() method of adapter. public View getView(final int position, View convertView, ViewGroup parent) { View v = convertView; ViewHolder holder = null; v = vi.inflate(R.layout.row_lv_operator, null); tvOperatorname=(TextView) v.findViewById(R.id.tvOperatorName); ivOperatorIcon=(ImageView)v.findViewById(R.id.ivOperatorIcon); btnAddToFavourite=(Button)v.findViewById(R.id.btnFavourite); tvOperatorname.setText(values[position]); ivOperatorIcon.setImageResource(icons[position]); //holder.ivOperatorIcon.setTag(values[position]); btnAddToFavourite.setOnClickListener(new OnClickListener() { public void onClick(View arg0) { **btnAddToFavourite.setBackgroundDrawable(getResources().getDrawable(R.drawable.favourite_marked));** Toast.makeText(getApplicationContext(), "hi",Toast.LENGTH_SHORT).show(); } }); eturn v; }

  • Answer:

    I believe what your trying to do is something like public void onClick(View arg0) { ((Button) arg0).setBackgroundDrawable(.... well.. if im not mistaken View class also have setBackgroundDrawable but the idea is you should use the onclicked view and not the general btnAddToFavourite

Nirav Bhandari at Stack Overflow Visit the source

Was this solution helpful to you?

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.