当前位置: 代码迷 >> Android >> 点击通知栏无响应,该怎么解决
  详细解决方案

点击通知栏无响应,该怎么解决

热度:60   发布时间:2016-04-28 04:16:03.0
点击通知栏无响应
为什么相同的程序,在部分手机上点击通知栏后无法响应并跳转到指定界面。
初始化通知栏代码如下:

Intent intent = new Intent(this, MainActivity.class);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
builder = new NotificationCompat.Builder(this)
.setContentIntent(PendingIntent.getActivity(this, 0, intent,
PendingIntent.FLAG_UPDATE_CURRENT));

------解决方案--------------------
引用:
本来点击通知栏后应该显示MainActivity的,但是没有看到显示MainActivity的日志,所以我认为点击后没有启动MainActivity。

Quote: 引用:

看log
应该都有提示输出的

不是MainActivity的日志,而是系统的日志
  相关解决方案