I have an activity which calls the fragment's. I am trying to implement Omniture in Android. I do see documentation for implementing omniture in Activity. But i want to have omniture implementend in my Fragments. Here is the code for Activity. I am little confused to implement in Fragments.
@Override
protected void onStart() {
super.onStart();
TrackingHelper.startActivity(this);
}
@Override
protected void onStop() {
super.onStop();
TrackingHelper.stopActivity();
}