美文网首页
android 8.0 兼容问题

android 8.0 兼容问题

作者: 逝水ly | 来源:发表于2018-03-08 15:03 被阅读0次

1 通知

NotificationChannel channel = null;
if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
channel = new NotificationChannel(NOTIFICATION_CHANNEL_NAME,
NOTIFICATION_CHANNEL_NAME, android.app.NotificationManager.IMPORTANCE_HIGH);
channel.enableLights(true); //是否在桌面icon右上角展示小红点
channel.setLightColor(Color.RED); //小红点颜色
channel.setShowBadge(true); //是否在久按桌面图标时显示此渠道的通知
mManager.createNotificationChannel(channel);
}

2 安装未知来源app
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />

3
Only fullscreen opaque activities can request orientation

使用api 26

相关文章

网友评论

      本文标题:android 8.0 兼容问题

      本文链接:https://www.haomeiwen.com/subject/lldyfftx.html