Android Programming Press on the image to return to the main documentation page.

AirView

Written by BarxDroid

List of types:

AirViewListener

AirViewListener


Events:

HoverStart(x as Float, y as Float)
HoverEnd(x as Float, y as Float)
HoverMove(x as Float, y as Float)

Members:


  Initialize (view As android.view.View, Eventname As String)

Members description:

Initialize (view As android.view.View, Eventname As String)
Initializes a Hover Listener against a given View.

View - The View that will react to the Hover event
EventName - The sub that will handle the events

Be sure to add the following to the manifest using the Manifest Editor:-
addactivitytext(Main, <intent-filter>
<action android:name="com.sec.android.airview.HOVER" />
</intent-filter>)
Top