Adham
Adham

Reputation: 64904

Can I add a clicklistener to LinearLayout in Android?

I want to do something when the user clicks on the LinearLayout group.

Upvotes: 0

Views: 2867

Answers (1)

Amir Raminfar
Amir Raminfar

Reputation: 34179

Yes you can. Just use android:onClick="methodName" or add it programatically by using setOnClickListener

Upvotes: 2

Related Questions