mbiamont / google-analytics-annotations

Android library to easily use Google Analytics through annotation
Apache License 2.0
69 stars 12 forks source link

Track screen fragment #4

Closed amouly closed 8 years ago

amouly commented 8 years ago

There is a way to track the "screen event" when entering on Fragments? I see the Activity example but not Fragment example or documentation.

Thanks for your help.

mbiamont commented 8 years ago

Hi,

Yes; you can use the annotation on fragments too :)

Example :

@TrackScreen(name = "MainFragment")
@Override
protected void onActivityCreated(Bundle savedInstanceState) {
  super.onActivityCreated(savedInstanceState);
  (...)
}