luckysing_noobster
luckysing_noobster

Reputation: 2013

android popup window clickable

Hi I have a android PopupWindow which has a RelativeLayout containing two TextView and one ImageView.I want to be able to click on the the Popup as a whole with the respective views inside it and go to another activity.Do I need to implement a custom OnClickListener on the popup or there are some methods on the popup window I am missing out on.Please guide me.Thanks in advance.

Upvotes: 1

Views: 587

Answers (1)

adrianp
adrianp

Reputation: 2551

PopupWindow does not inherit from View, so you will need to implement your own click listener. This method might help.

Upvotes: 1

Related Questions