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

Analytics

List of types:

AnalyticsTracker

AnalyticsTracker

This library allows you to track your application usage with Google Analytics service.
See the Analytics tutorial for more information.

Permissions:

android.permission.INTERNET
android.permission.ACCESS_NETWORK_STATE

Events:

None

Members:


  Initialize

  IsInitialized As Boolean

  SendProduct (TransactionId As String, Name As String, SKU As String, Category As String, Price As Double, Quantity As Long, CurrencyCode As String)

  SendScreenView (ScreenName As String)

  SendTiming (Category As String, ValueMs As Long, Name As String, Label As String)

  SendTransaction (TransactionId As String, Affiliation As String, Revenue As Double, Tax As Double, Shipping As Double, CurrencyCode As String)

  TrackEvent (Category As String, Action As String, Label As String, Value As Long)

Members description:

Initialize
IsInitialized As Boolean
SendProduct (TransactionId As String, Name As String, SKU As String, Category As String, Price As Double, Quantity As Long, CurrencyCode As String)
SendScreenView (ScreenName As String)
Sends a screen view (same concept as web page views).
SendTiming (Category As String, ValueMs As Long, Name As String, Label As String)
SendTransaction (TransactionId As String, Affiliation As String, Revenue As Double, Tax As Double, Shipping As Double, CurrencyCode As String)
TrackEvent (Category As String, Action As String, Label As String, Value As Long)
Triggers an event.
See Google Analytics documentation for more information about Analytics events.
Top