Ver Mensaje Individual
  #179  
Viejo 29/08/13, 23:57:45
Array

[xs_avatar]
mbc596 mbc596 no está en línea
Usuario muy activo
 
Fecha de registro: dic 2012
Mensajes: 562
Modelo de smartphone: Nexus 4 16GB
Tu operador: Movistar
LLevo todo el dia solucionando errores, la mayoria son cierres } mal colocados, pero estoy con este que no se como resorverlo. A ver si me podeis ayudar:

Código:
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java:1202: ';' expected
                        oldEntry.notification.getNotification.tickerText)) || mHaloActive;
                                                                         ^
frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/BaseStatusBar.java:1202: not a statement
                        oldEntry.notification.getNotification.tickerText)) || mHaloActive;
                                                                              ^
Reading library jar [/home/mbc596/4.3_r2.2/out/target/common/obj/JAVA_LIBRARIES/android_stubs_current_intermediates/classes.jar]
2 errors
La línea del error es esta: (la última)
Código:
boolean updateTicker = notification.getNotification().tickerText != null
                && !TextUtils.equals(notification.getNotification().tickerText,
                        oldEntry.notification.getNotification.tickerText)) || mHaloActive;
Mirando el original de PA encuentro esto:
Código:
boolean updateTicker = (notification.notification.tickerText != null
                && !TextUtils.equals(notification.notification.tickerText,
                        oldEntry.notification.notification.tickerText)) || mHaloActive;
Como se puede ver en el mio tengo getNotification y PA solo notification, pienso que el error puede estar aquí, pero no se como solucionarlo.

El cherry-pick solo añade esta parte
Código:
) || mHaloActive
Gracias de antemano!
Responder Con Cita