Firebase Analytics - 如何添加屏幕名称和日志事件

时间:2018-05-12 13:13:40

标签: android firebase firebase-analytics firebase-console

我想将屏幕名称和日志事件添加到Firebase的分析中。我试过下面的代码,但是我无法看到事件& Firebase控制台中的屏幕名称。

//For Logging Event
Bundle bundle = new Bundle();
bundle.putString("custom_param",nameEditText.getText().toString());
mFirebaseAnalytics.logEvent(FirebaseAnalytics.Event.GENERATE_LEAD, bundle);

//For Adding Screen Name
mFirebaseAnalytics.setCurrentScreen(this, "Visitor Entry", VisitorEntryActivity.class.getSimpleName());

我已经添加了 Firebase SDK。我不知道我需要做什么设置。提前谢谢。

1 个答案:

答案 0 :(得分:0)

在MyActivity.java下放置

protected void onResume() {
    isActivityLive = true;
    super.onResume();
    analytics.setCurrentScreen(this, "Screen Name", this.getClass().getSimpleName());
}