由于几个时间线项目共享相同的捆绑 ID,我创建了捆绑封面:
TimelineItem timelineCover = new TimelineItem();
timelineCover.setText("Help Options");
timelineCover.setBundleId(bundleId);
timelineCover.setNotification(new NotificationConfig().setLevel("DEFAULT"));
timelineCover.setIsBundleCover(true);
timelineCover.setIsPinned(true);
MirrorClient.insertTimelineItem(credential, timelineCover);
它通过正确捆绑但 isPinned = false 的时间线。
我尝试在时间轴操场上将 isPinned 字段更新为 true,但它保持为 false。
是否可以固定捆绑包?