[FAQ14165]L上来电全屏显示

请在 PhoneStatusBar.java 中做如下修改, 关键字"ALPS02303269". 

public void addNotification(StatusBarNotification notification, RankingMap ranking) {
    if (DEBUG) Log.d(TAG, "addNotification key=" + notification.getKey());

    /// M: for ALPS02303269. @{
    boolean isInCallNotification = (notification.getPackageName() != null) &&
                                    notification.getPackageName().equals("com.android.dialer");
    /// @}
    if (mUseHeadsUp && shouldInterrupt(notification)
        /// M: for ALPS02303269. @{
        && !isInCallNotification
        /// @}
        ) {
        ...........................;
    }

    .................................;
}
 
 
Thanks.

你可能感兴趣的:([FAQ14165]L上来电全屏显示)