Reputation: 64904
I want to do something when the user clicks on the LinearLayout group.
Upvotes: 0
Views: 2867
Reputation: 34179
Yes you can. Just use android:onClick="methodName" or add it programatically by using setOnClickListener
android:onClick="methodName"
setOnClickListener
Upvotes: 2