Zain1122
Zain1122

Reputation: 45

Can any one tell me how to make an Image work Like a Button?

I am new in Android , so i want to make an Image View work like a button. So can anyone tell me how to do that?

Thanks In Advance :)

Upvotes: 0

Views: 36

Answers (1)

jomartigcal
jomartigcal

Reputation: 813

Use ImageView's setOnClickListener method e.g. image1.setOnClickListener(this) or you can use ImageButton instead of ImageView.

Upvotes: 1

Related Questions