神策(Android)- 在曝光采集基础上学习项目架构

news/2024/11/17 3:58:04/

开篇的时候我就在想这篇blog到底有没有意义?因为本身使用的就是神策提供的功能,同时神策也提供了很完善的文档,而唯一要我们做的也仅仅是将它正确的集成到项目内,并且随着版本升级,文档肯定也会有一定变更… 不过,当我通过曝光采集的集成来学习部分项目架构的时候,我感觉到了一些成长

神策篇

  • 神策(Android)- 集成基础埋点的整个过程
  • 神策(Android)- 在曝光采集基础上学习项目架构

什么是曝光采集?

指的应该是某些视图显示在当前页面时会进行数据采集,不同于以往的一些事件埋点;这种采集方式在用户滑动列表时也可以和便捷的采集到数据,正好与常规埋点互补

当你要集成 曝光采集 时,你肯定已经完成了神策的基础集成,所以我们直接进入 Android曝光采集 的接入流程~

一切以 官方文档 为准,因为随着版本升级,集成文档或许多多少少会有一些变动,此篇仅记录我集成曝光采集的过程

    • 基础配置
    • 常用功能
      • 普通、单视图标记
      • 列表元素标记
        • 标记所有行
        • 标记单行
      • 移除元素标记
      • 曝光回调
      • 更新某个元素的曝光属性
    • 项目实践
      • 基类封装
      • 基础配置
      • 调用封装

基础配置

 SAExposureConfig exposureConfig = new SAExposureConfig(areaRate, stayDuration, repeated);

SAExposureConfig 参数:只有当曝光配置 areaRatestayDurationrepeated 三者都满足时才能触发曝光埋点事件

在这里插入图片描述

示例

 //当我们设置元素完全曝光,有效停留时长 1s ,支持重复曝光SAExposureConfig exposureConfig = new SAExposureConfig(1.0f, 1, true);

SDK 提供全局设置曝光配置

 String SA_SERVER_URL = "数据接收地址";// 初始化 SDK 配置SAConfigOptions configOptions = new SAConfigOptions(SA_SERVER_URL);// 初始化曝光模块配置configOptions.setExposureConfig(exposureConfig);

常用功能

普通、单视图标记

官方介绍的方式肯定更简单、直白一些,在项目使用中肯定要进行二次封装,不然太乱了~

View view = findViewById(R.id.resourceID);
String event = "曝光事件名称";
JSONObject properties = new JSONObject();
try {properties.put("曝光事件属性 key", "曝光事件属性 value");
} catch (JSONException e) {e.printStackTrace();
}
SAExposureConfig exposureConfig = new SAExposureConfig(1.0f, 1, true);
SAExposureData exposureData = new SAExposureData(event, properties, exposureConfig);
SensorsDataAPI.sharedInstance().addExposureView(view, exposureData); //标记视图元素

SAExposureData 参数介绍

在这里插入图片描述
addExposureView 参数介绍

在这里插入图片描述
注意

  • 全局的曝光设置有一个默认值,即 areaRate = 0.0f,stayDuration = 0,repeated = true
  • 标记视图元素时,如果不传入配置项,则会使用全局曝光配置(可常用)
  • 标记视图元素时,如果传入配置项,则会使用传入的自定义配置(看情况使用,定制化强)
  • 不同的视图元素可以使用不同的曝光配置,曝光配置和标记视图时传入的配置对应

列表元素标记

当列表使用曝光的时候,由于列表元素在绘制过程中会复用,因此针对列表复用场景需要对列表元素进行唯一标识 exposureIdentifier 设置,一般可以通过 SAExposureData 进行设置,具体如下:

  SAExposureData exposureData = new SAExposureData("exposureName", null, "11",exposureConfig);

SAExposureData 参数介绍

在这里插入图片描述
注意:当元素(view)设置了唯一标识(exposureIdentifier),则通过唯一标识来进行曝光元素识别;因此不建议同一个页面不同元素设置相同唯一标识,只建议列表使用的时候进行元素唯一标识设置以避免列表复用导致的采集不准。

标记所有行

当针对列表中的某行或者某列进行标记而不是所有的行或列进行标记的时候需要通过 setExposureIdentifier 进行标记所有的元素,然后再通过 addExposureView 进行标记需要曝光的行或列的元素。

public void onBindViewHolder(@NonNull ViewHolder holder, final int position) {View view = holder.xxxx; SAExposureConfig exposureConfig = new SAExposureConfig(1.0f, 1, true);SAExposureData exposureData = new SAExposureData("exposureName", null, String.valueOf(position), exposureConfig);//此处的曝光标识,一般传入需要标记的列表元素的位置SensorsDataAPI.sharedInstance().addExposureView(view, exposureData);//添加曝光元素(view)到曝光列表 
}

标记单行

  //进行标记所有的元素SensorsDataAPI.sharedInstance().setExposureIdentifier(view, String.valueOf(position));

setExposureIdentifier 参数介绍

在这里插入图片描述

public void onBindViewHolder(@NonNull ViewHolder holder, final int position) {View view = holder.xxxx;SensorsDataAPI.sharedInstance().setExposureIdentifier(view, String.valueOf(position));//曝光标识用于区分列表元素的特殊场景,比如列表元素复用、列表元素位置变更(刷新、删除、添加等),建议客户使用列表元素的位置作为唯一标识来处理//只采集列表 position 为 1 的曝光元素的曝光事件if(position==1){SAExposureConfig exposureConfig = new SAExposureConfig(1.0f, 1, true);SAExposureData exposureData = new SAExposureData("exposureName", null, String.valueOf(position),exposureConfig);//此处的曝光标识,一般传入需要标记的列表元素的位置SensorsDataAPI.sharedInstance().addExposureView(view, exposureData);//添加曝光元素(view)到曝光列表}
}

注意:如果标记某一行或某一列时,不使用曝光标识 setExposureIdentifier 进行设置,会导致曝光数据采集不准,单纯靠 position 是无法准确判定当前 position 是否是想要标记的元素;并且 setExposureIdentifieraddExposureView 进行标记的同一个元素 view 的唯一标识需要相同


移除元素标记

这个我在项目中没有使用到,具体看业务需求

当我们不想采集某个元素的曝光时,可以使用 SDK 提供的移除标记接口removeExposureView,有如下两个接口:

//方法一:
View view = findViewById(R.id.resourceID);
SensorsDataAPI.sharedInstance().removeExposureView(view);//方法二:
View view = findViewById(R.id.resourceID);
SensorsDataAPI.sharedInstance().removeExposureView(view,"aaa");

removeExposureView 参数介绍
在这里插入图片描述


曝光回调

SDK 从 6.6.9 版本提供了一个曝光监听的协议接口, 可通过 SAExposureData 中的 exposureListener 来设置,接口说明如下:

saExposureData.setExposureListener(SAExposureListener saExposureListener)

SAExposureListener 说明如下

public interface SAExposureListener {/*** 返回对应 View 是否曝光** @param view View* @param exposureData View 对应数据* @return true:曝光,false:不曝光*/boolean shouldExposure(View view, SAExposureData exposureData);/*** 曝光完成回调** @param view View* @param exposureData 曝光数据*/void didExposure(View view, SAExposureData exposureData);
}

参数介绍

在这里插入图片描述

注意:shouldExposuredidExposure 回调都在主线程执行,禁止做耗时操作。

SAExposureData exposureData = new SAExposureData("expose");
exposureData.setExposureListener(new SAExposureListener() {@Overridepublic boolean shouldExposure(View view, SAExposureData exposureData) {//可以根据实际业务来返回 true 或者 false,这里影响当前曝光监听者的所有曝光事件,需谨慎使用if (不需要曝光的条件) {return false;}return true;}@Overridepublic void didExposure(View view, SAExposureData exposureData) {//可以根据实际业务需求,在触发曝光后,进行一些业务操作}
});
SensorsDataAPI.sharedInstance().addExposureView(view, exposureData);

更新某个元素的曝光属性

SDK 从 6.6.9 版本提供了一个曝光监听的协议接口, 可通过 updateExposureProperties 更改曝光元素的属性。

  SensorsDataAPI.sharedInstance().updateExposureProperties(view, properties);

参数介绍

在这里插入图片描述


项目实践

以下均为项目伪代码,未必可以直接使用,更多的提供一种借鉴、思想 ,有的东西我也未必全部理解,主要可以看看一些封装思想,而且采用了 Hilt 框架,关于这个框架我后续争取也记录一篇

已知的有几点要提示一下

  • 涉及多模块、组件化开发
  • 采用 DaggerHilt 依赖注入框架

基类封装

声明 BaseApplication ,主要提供获取上下文 和 资源获取的方法

import android.app.Application
import android.content.ContextWrapper
import android.content.res.Configuration
import android.content.res.Resourcesabstract class BaseApplication : Application() {override fun onCreate() {super.onCreate()INSTANCE = this}@Suppress("DEPRECATION")override fun getResources(): Resources {val res = super.getResources()val config = Configuration()config.setToDefaults()res.updateConfiguration(config, res.displayMetrics)return res}
}private lateinit var INSTANCE: Applicationobject AppContext : ContextWrapper(INSTANCE)

声明特用于神策的 LiuApplication ,正常应该是项目级Application

import dagger.hilt.android.HiltAndroidApp
import javax.inject.Inject@HiltAndroidApp
class LiuApplication : BaseApplication() {@Injectlateinit var startups: Set<@JvmSuppressWildcards ApplicationStartup>override fun onCreate() {super.onCreate()// 注册多模块 onCreate()startups.sortedBy { it.priority() }.forEach {it.onCreate(this)}}
}

启动优先

import android.app.Applicationinterface ApplicationStartup : Priority {override fun priority(): Int = 100fun onCreate(application: Application)
}

优先级实体类

interface Priority {fun priority(): Int
}

基础配置

基础配置(已集成神策SDK基础配置 - Application

    private fun init(context: Context) {// 开启全埋点 其他配置,如开启可视化全埋点 需要在主线程初始化神策 SDKSensorsDataAPI.startWithConfigOptions(context, SAConfigOptions(serviceUrl).apply {// 开启全埋点autoTrackEventType = SensorsAnalyticsAutoTrackEventType.APP_START orSensorsAnalyticsAutoTrackEventType.APP_END// 打开 SDK 的日志输出功能enableLog(BuildVariants.isDebug())// 开启 App 打通 H5enableJavaScriptBridge(true)// 传入 true 代表开启推送点击事件自动采集enableTrackPush(true)})trackAppInstall(context)//初始化一个曝光配置val exposureConfig = SAExposureConfig(1.0f, 1.0, true)// 初始化 SDK 配置 - 数据接收地址val configOptions = SAConfigOptions(serviceUrl)// 初始化曝光模块配置configOptions.exposureConfig = exposureConfig}

调用封装

建议跟着代码顺序往下看,有部分是封装源码

StatisticsService 抽象服务 - 埋点抽象类(主要声明埋点方法等)

interface StatisticsService {//获取具体的埋点服务管理类(多模块、多业务中涵盖多个管理类)companion object {@JvmStaticval service: StatisticsService by lazy { ServiceManager.queryStatisticsService() }}/*** 测试曝光*/fun test(params1: String? = "", params2: String? = null)}

封装追溯

ServiceManager 服务管理类(偏代理、工厂)

object ServiceManager {private val serviceInterface by lazy {EntryPoints.get(AppContext.applicationContext, ServiceInterface::class.java)}fun queryStatisticsService(): StatisticsService = serviceInterface.bindsStatisticsService()}

ServiceInterface 通过 Hilt 生成对应服务类(偏工厂)

@EntryPoint
@InstallIn(SingletonComponent::class)
interface ServiceInterface {fun bindsStatisticsService(): StatisticsService
}

StatisticsServiceImpl 具体服务(埋点)实现类

internal class StatisticsServiceImpl @Inject constructor() : StatisticsService {/*** @param params1 参数1* @param params2 参数2*/override fun test(params1: String? , params2: String?) {val properties = mutableMapOf<String, String>()properties["params1"] = params1.string()properties["params2"] = params2.string()SensorManger.track(EventName.Test, properties)}
}

EventName 埋点事件名

//运营给到的埋点事件名称
internal object EventName {const val Test: String = "test_pageview"     // 测试浏览
}

SensorManger 埋点管理类

internal object SensorManger {fun track(eventName: String, properties: Map<String, String?>) = execute {val jsonObject = JSONObject()properties.entries.forEach {jsonObject.put(it.key.string(), it.value.string())}SensorsDataAPI.sharedInstance().track(eventName, jsonObject)}
}

调用方式

 StatisticsService.service.test(params1,params2)

http://www.ppmy.cn/news/701125.html

相关文章

Flask boostrap实现图片视频上传下载展示

Flask boostrap实现图片视频上传下载展示 1、展示效果2、前端代码3、后端代码 1、展示效果 项目目录结构 2、前端代码 html <!DOCTYPE html> <html lang"en"> <head><meta charset"UTF-8"><title>Title</title>&l…

在Blender和Zbrush中创建激光指示器,新手硬表面建模码住!

大家好&#xff0c;今天云渲染小编给大家带来的分享是硬表面建模&#xff0c;CG艺术家Lyubov使用Blender和Zbrush创建激光指示器的幕后花絮。 介绍 我叫 Lyubov&#xff0c;来自俄罗斯圣彼得堡&#xff0c;是一名 3D 建模的初学者。虽然学习还不到一年&#xff0c;但是我对它…

解决 fatal: Authentication failed for ‘https://github.com/*/*.git/‘

原因&#xff1a;github 的认证策略发生了改变&#xff0c;在 2021年8月13日 的时候&#xff0c;用户名加密码的认证方式被去掉了&#xff0c;换成了 个人令牌&#xff08;Personal Access Token&#xff09;的校验方式。 官网解决方案&#xff1a;管理个人访问令牌 - GitHub …

PC端QQ上下载的文件会在哪个文件夹下呢?

写这篇博客的起因是&#xff1a;在电脑没有联网的情况下&#xff0c;想找到从《顺利毕业everyone》群里下载的安装包PC&#xff0c;结果不知道QQ下载的文件在哪个文件夹下&#xff0c;于是百度了一下&#xff0c;涨知识了&#xff0c;就写一篇博客记录之。 问题解答&#xff1…

怎么把游戏设置到计算机里,电脑怎么把游戏放到桌面上

如何将超级方块游戏放在计算机桌面上&#xff1f; 右键单击并选择将程序发送到桌面的快捷方式 如何在计算机(台式机)上放置点屏 您好&#xff0c;我不是说您知道这不是设备问题&#xff0c; 这不是计算机问题。 公众评论网络存在漏洞&#xff0c;主要问题可能在于网络服务提供商…

怎么把软件放在桌面上?

桌面上只有个安装包&#xff0c;每次都要重新安装打开&#x1f636;&#x1f636;&#x1f972;&#x1f972;

SpringMVC (二) 第一个MVC程序

学习回顾&#xff1a;SpringMVC &#xff08;一&#xff09; 什么是SpringMVC Hello&#xff0c;SpringMVC 现在我们来看看如何快速使用SpringMVC编写我们的程序吧&#xff01; 一、配置版 1、新建一个Moudle &#xff0c; springmvc-02-hello &#xff0c; 添加web的支持&…

Spring中的Bean是线程安全的吗?

文章目录 一、Spring中的Bean是从哪里来的&#xff1f;二、Spring中什么样的Bean会出现线程安全问题&#xff1a;三、如何处理Spring Bean的线程安全问题&#xff1a; 其实&#xff0c;Spring 中的 Bean 是否线程安全&#xff0c;其实跟 Spring 容器本身无关。Spring 框架中没有…