私有云自定义通知栏,配置了厂商通道后通知栏无法显示自定义的!
你好:
技术大大, 情况是这样的,我司接入私有云后 因默认通知栏内容只能显示1行,而采用自定义式并设定为默认通知栏
private void setStyleCustom(Context context) {
Log.e("jpush","设置极光通知栏");
CustomPushNotificationBuilder builder = new CustomPushNotificationBuilder(context, com.aibs.base.R.layout.push_notitfication_layout, .R.id.icon, com.aibs.base.R.id.title, R.id.text);
builder.layoutIconDrawable = com.aibs.base.R.drawable.ic_launcher;
builder.developerArg0 = "developerArg2";
// JPushPrivatesApi.setPushNotificationBuilder(1, builder);
JPushPrivatesApi.setDefaultPushNotificationBuilder(builder);
}
有多个项目同一份代码的 情况下 均设置 自定义通知栏,
发现接入厂商通道下的app 通知栏 成了默认 而未接入厂商通道的 app 成功使用的是自定义
项目1 (未接入厂商通道) 成功使用自定义通知栏
项目2 (接入厂商通道) 未成功使用自定义通知栏(使用原始默认通知栏)