如何将谷歌分析添加到Android应用程序小部件?

时间:2012-12-10 14:46:17

标签: android-widget google-analytics

我一直很难将Google分析应用到我的应用小部件中,但没有任何成功。代码在使用Activity时工作正常,但不适用于app小部件。

1 个答案:

答案 0 :(得分:0)

您可以在AppWidgetProvider onEnabled()方法

中使用此代码
 Tracker t = ((MyApplication) context.getApplicationContext()).getTracker(
            MyApplication.TrackerName.APP_TRACKER);

 // Set screen name.
 t.setScreenName(screenName);

 // Send a screen view.
 t.send(new HitBuilders.AppViewBuilder().build());