2
3天前我設置了以下代碼。我想設置一個自定義變量以在Google Analytics
中使用。 3天后,我仍然沒有在GA帳戶中看到變量percentage
或score
(除非我不知道在哪裏尋找,但我認爲我已經查看了每個可用區域)。Google Analytics中的自定義維度/指標
我在GA中看到我的所有頁面瀏覽量,而不是這些自定義變量。
這是或是否不是在GA中設置自定義變量的方式?
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.results);
EasyTracker.getInstance().activityStart(this);
final Tracker tracker = EasyTracker.getTracker();
cAnswers = getIntent().getIntExtra("correctAnswers", -1);
wAnswers = getIntent().getIntExtra("wrongAnswers", -1);
score = getIntent().getLongExtra("score", -1);
category = getIntent().getStringExtra("category");
qs = getIntent().getParcelableArrayListExtra("queries");
percentage = 10 * cAnswers;
tracker.setCustomMetric(1, (long)percentage);
tracker.setCustomMetric(2, score);
tracker.sendView();
是的,有返回一個適當的類型。 google.com/analytics中有哪些內容需要我先做?或者它就像一個''''Pageview'''',它只是單獨出現? – Matt 2013-03-07 15:28:54
明白了。我認爲你的代碼可能工作正常,但你不會看到自動顯示的自定義指標和維度。我會更新我的答案,並提供更多關於如何查看它們的信息。 – Greg 2013-03-07 15:52:38
正是我在找的東西。謝謝。 – Matt 2013-03-07 17:09:26