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
Related Q & A:
- is there away to change the background image of individual workspaces on Gnome Desktop?Best solution by Super User
- how to How to change button properties from another class?Best solution by stackoverflow.com
- How to draggable button background color to apply another button background?Best solution by Stack Overflow
- On photobucket how can I change the background of a picture?Best solution by Yahoo! Answers
- How do I change my background on my yahoo?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.