如何在Oreo上默认扩展InboxStyle通知

时间:2018-03-15 14:26:01

标签: android android-notifications

我创建了一个通知,在Oreo上,它默认折叠为标题。如何在默认情况下展开它以便我可以看到这些线?

class PrintUtil {
  static printDiv(elementId) {
    let printElement = document.getElementById(elementId);
    var printWindow = window.open('', 'PRINT');
    printWindow.document.write(document.documentElement.innerHTML);
    setTimeout(() => { // Needed for large documents
      printWindow.document.body.style.margin = '0 0';
      printWindow.document.body.innerHTML = printElement.outerHTML;
      printWindow.document.close(); // necessary for IE >= 10
      printWindow.focus(); // necessary for IE >= 10*/
      printWindow.print();
      printWindow.close();
    }, 1000)
  }   
}

0 个答案:

没有答案