Reputation: 193
I work with an webview and i want to launch one different event when the user clicks on each corner of webview. it is possible?
Thanks!!
Upvotes: 2
Views: 190
Reputation: 3248
You could place your WebView inside a RelativeLayout, set the WebView to fill the entire RelativeLayout, then add whatever elements you'd like to rest on top of the WebView using android:layout_alignParentTop, android:layout_alignParentLeft, etc.
Upvotes: 1