在Android google analtics库上发送多个值

时间:2015-12-16 13:12:25

标签: android google-analytics

我想在我的代码中添加多个值。

我的代码是:

 mTracker.send(new HitBuilders.EventBuilder()
            .setCategory("send")
            .setAction("event")
            .setLabel(key)
            .setValue(value)
            .build());

1 个答案:

答案 0 :(得分:-2)

我假设您希望在跟踪事件时需要为一个键发送多个值。

如果是这种情况,请使用 StringBuilder 类通过合并多个字符串值来准备String值。

Ex:StringBuilder sb = new StringBuilder();

sb.append( “StringValue1”);

sb.append( “StringValue2”);

传递sb.toString()取代你的值。