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