Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i used android google analytic trackEvent and test it use the google demo at the sdk the code is :

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

 tracker = GoogleAnalyticsTracker.getInstance();

// Start the tracker in manual dispatch mode...
  tracker.startNewSession("UA-33260404-1", this);

// ...alternatively, the tracker can be started with a dispatch interval (in seconds).
// tracker.startNewSession("UA-33260404-1", 20, this);

setContentView(R.layout.main);
Button createEventButton = (Button)findViewById(R.id.NewEventButton);
createEventButton.setOnClickListener(new OnClickListener() {
  @Override
  public void onClick(View v) {
    tracker.trackEvent(
        "Clicks",  // Category
        "Button",  // Action
        "clicked", // Label
        77);       // Value
  }
});

Button createPageButton = (Button)findViewById(R.id.NewPageButton);
createPageButton.setOnClickListener(new OnClickListener() {
  @Override
  public void onClick(View v) {
    // Add a Custom Variable to this pageview, with name of "Medium" and value "MobileApp"
    tracker.setCustomVar(1, "Medium", "Mobile App");
    // Track a page view. This is probably the best way to track which parts of your application
    // are being used.
    // E.g.
    // tracker.trackPageView("/help"); to track someone looking at the help screen.
    // tracker.trackPageView("/level2"); to track someone reaching level 2 in a game.
    // tracker.trackPageView("/uploadScreen"); to track someone using an upload screen.
    tracker.trackPageView("/TestActivity");
  }
});

i test it on the mobile ,i can find base data of example visitor counter,but i cannot see trackPageView("/TestActivity") and trackEvent,i can see tracker.setCustomVar at the report。 so my question how to see trackEvent ,if i need setting at backstage supporter。google document is small about android mobile. edit:i have find the location of trackPageView and trackEvent,but i have another problem for example trackEvent only log the Clicks,Button,and clicked but i cannot found the 77 at the log analytic.where is to found the 77

share|improve this question

1 Answer

up vote 0 down vote accepted

You're not calling tracker.dispatch(). If you don't set a dispatch interval when you call tracker.startNewSession() you need to call dispatch at some point, probably in your onPause lifecycle method:

https://developers.google.com/analytics/devguides/collection/android/devguide#startingTheTracker

share|improve this answer
at my app end i add the tracker.dispatch().i can find the value 77 at log,other i can see them – pengwang Jul 26 '12 at 7:02
1  
You have to invoke setCustomVar before you call trackPageView or trackEvent otherwise it will not work: developers.google.com/analytics/devguides/collection/android/… – twaddington Jul 26 '12 at 18:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.