请教。如题,想达到的效果是:点击后,没有响应。本人对android了解的不多。请各位高手伸出援手。

解决方案 »

  1.   

    咦?嘿嘿这样也可以。我是这么解决的。不过,不知道能不能引起其他的问题。文件:TabletStatusBar.java
         
      mNotificationArea = sb.findViewById(R.id.notificationArea);
      if (!NOTIFICATION_PEEK_ENABLED) {
          mNotificationArea.setOnTouchListener(new    NotificationTriggerTouchListener());  
            }
          mNotificationTrigger = sb.findViewById(R.id.notificationTrigger);
      if (NOTIFICATION_PEEK_ENABLED) {
          mNotificationTrigger.setOnTouchListener(new NotificationTriggerTouchListener()); // 注释掉 
            }   
      

  2.   

    你是吧触发notification的句柄给进掉了对吧?