• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps change image on click!!

wounded

Newbie
hi all ,
hope all are fine
i want to change image to another image or video by click ??!
anybody know to help plz
 
Code:
make your class implement View.OnClickListener, then override the following method as so.
@Override
public void onClick(View v) {
 
    if (v == myButton)
        imageView.setImageResource(R.drawable.my_resource);
}
 
Back
Top Bottom