écran noir lancement activité
neris
-
neris -
neris -
Bonjour,
Au lancement d'une activité (je crois que c'est à ce moment là), mon application plante et l'écran du téléphone devient noir.
Dans le moniteur je vois ces erreurs :
/Typeface: getVibeFontPathWithCTS(): fontPath =
W/Typeface: getVibeFontPathWithCTS(): fontName =
0W/Typeface: getVibeFontPathWithCTS(): isForceToSystemDefault = false
W/Typeface: VIBEUI_setThemeFont(): sVibeFontPath = ,fontPath =
W/Typeface: VIBEUI_setThemeFont(): FontPath Not Changed!
E/MultiWindowProxy: getServiceInstance failed!
Pourriez-vous m'aider ?
Merci d'avance.
Au lancement d'une activité (je crois que c'est à ce moment là), mon application plante et l'écran du téléphone devient noir.
Dans le moniteur je vois ces erreurs :
/Typeface: getVibeFontPathWithCTS(): fontPath =
W/Typeface: getVibeFontPathWithCTS(): fontName =
0W/Typeface: getVibeFontPathWithCTS(): isForceToSystemDefault = false
W/Typeface: VIBEUI_setThemeFont(): sVibeFontPath = ,fontPath =
W/Typeface: VIBEUI_setThemeFont(): FontPath Not Changed!
E/MultiWindowProxy: getServiceInstance failed!
Pourriez-vous m'aider ?
Merci d'avance.
A voir également:
- écran noir lancement activité
- Double ecran - Guide
- Ecran noir pc - Guide
- Capture d'écran whatsapp - Accueil - Messagerie instantanée
- Activité instagram - Guide
- Retourner ecran pc - Guide
6 réponses
Je pense avoir déclaré, après je suis débutant en prog Android...
C'est la MainActivity qui lance une autre activité en lui passant un string
Log "complet" :
<activity android:name="fr.d.t.s.MainActivity"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="fr.d.t.s.ActivitePartie"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>
C'est la MainActivity qui lance une autre activité en lui passant un string
Intent intent = new Intent( MainActivity.this, ActivitePartie.class); intent.putExtra(EXTRA_NB_MANCHES, this.nombreManches.getText().toString()); startActivity(intent); MainActivity.this.finish();
Log "complet" :
06-09 14:59:03.618 4295-4295/fr.borntocode.lud00.voiceapplication I/art: Late-enabling -Xcheck:jni
06-09 14:59:03.738 4295-4295/fr.borntocode.lud00.voiceapplication D/LenovoAppIconTheme: ExtraResources;cleanCachedIcon;clear cache..
06-09 14:59:04.203 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_dependencies_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.361 4295-4302/fr.borntocode.lud00.voiceapplication I/art: Debugger is no longer active
06-09 14:59:04.456 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_0_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.532 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_1_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.613 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_2_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.697 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_3_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.776 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_4_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.848 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_5_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.915 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_6_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:04.979 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_7_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:05.046 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_8_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:05.112 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Failed execv(/system/bin/dex2oat --runtime-arg -classpath --runtime-arg --instruction-set=arm64 --instruction-set-features=smp,a53 --runtime-arg -Xrelocate --boot-image=/system/framework/boot.art --runtime-arg -Xms64m --runtime-arg -Xmx512m --instruction-set-variant=cortex-a53 --instruction-set-features=default --dex-file=/data/app/fr.borntocode.lud00.voiceapplication-2/split_lib_slice_9_apk.apk --oat-file=/data/dalvik-cache/arm64/data@***@******@***@classes.dex) because non-0 exit status
06-09 14:59:05.115 4295-4295/fr.borntocode.lud00.voiceapplication W/System: ClassLoader referenced unknown path: /data/app/fr.borntocode.lud00.voiceapplication-2/lib/arm64
06-09 14:59:05.117 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: installProvider: context.getPackageName()=fr.borntocode.lud00.voiceapplication
06-09 14:59:05.120 4295-4295/fr.borntocode.lud00.voiceapplication I/InstantRun: starting instant run server: is main process
06-09 14:59:05.124 4295-4295/fr.borntocode.lud00.voiceapplication V/InstantRun: Starting server socket listening for package fr.borntocode.lud00.voiceapplication on android.net.LocalSocketAddress@cec904a
06-09 14:59:05.125 4295-4295/fr.borntocode.lud00.voiceapplication V/InstantRun: Started server for package fr.borntocode.lud00.voiceapplication
06-09 14:59:05.127 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: BIND_APPLICATION handled : 0 / AppBindData{appInfo=ApplicationInfo{283c8d8 fr.borntocode.lud00.voiceapplication}}
06-09 14:59:05.127 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Handling launch of ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}} startsNotResumed=false
06-09 14:59:05.221 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}: app=android.app.Application@f66326d, appName=fr.borntocode.lud00.voiceapplication, pkg=fr.borntocode.lud00.voiceapplication, comp={fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}, dir=/data/app/fr.borntocode.lud00.voiceapplication-2/base.apk
06-09 14:59:05.223 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): fontPath =
06-09 14:59:05.223 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): fontName =
06-09 14:59:05.223 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): isForceToSystemDefault = false
06-09 14:59:05.223 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: VIBEUI_setThemeFont(): sVibeFontPath = null,fontPath =
06-09 14:59:05.223 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: Pinit()
06-09 14:59:05.223 4295-4295/fr.borntocode.lud00.voiceapplication D/Typeface: hj dbg: init() start, current country=FR,language id=fr
06-09 14:59:05.241 4295-4295/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/Padauk.ttf
06-09 14:59:05.252 4295-4295/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/NanumGothic.ttf
06-09 14:59:05.252 4295-4295/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/DroidSansFallback.ttf
06-09 14:59:05.252 4295-4295/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/MTLmr3m.ttf
06-09 14:59:05.252 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: VIBEUI_setDefaultFont()
06-09 14:59:05.253 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): fontPath =
06-09 14:59:05.253 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): fontName =
06-09 14:59:05.253 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): isForceToSystemDefault = false
06-09 14:59:05.253 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: VIBEUI_SYSPROP_FONT_PATH:
06-09 14:59:05.271 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: Font is Set to System DefaultFont!
06-09 14:59:05.384 4295-4295/fr.borntocode.lud00.voiceapplication E/MultiWindowProxy: getServiceInstance failed!
06-09 14:59:05.389 4295-4295/fr.borntocode.lud00.voiceapplication D/wangcy9: not using Theme.DeviceDefault / Theme.DeviceDefault.Light
06-09 14:59:05.409 4295-4304/fr.borntocode.lud00.voiceapplication I/System: FinalizerDaemon: finalize objects = 1
06-09 14:59:05.583 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Performing resume of ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:05.592 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:05.592 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Resume ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}} started activity: false, hideForNow: false, finished: false
06-09 14:59:05.592 4295-4295/fr.borntocode.lud00.voiceapplication V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =null, this =com.android.internal.policy.PhoneWindow$DecorView{f2edea2 I.E...... R.....ID 0,0-0,0}
06-09 14:59:05.633 4295-4295/fr.borntocode.lud00.voiceapplication D/WindowClient: Add to mViews: com.android.internal.policy.PhoneWindow$DecorView{f2edea2 I.E...... R.....ID 0,0-0,0}, this = android.view.WindowManagerGlobal@f7ddedc
06-09 14:59:05.634 4295-4295/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: Dumper init 4 threads <0x7f75e27f80>
06-09 14:59:05.634 4295-4295/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: <fr.borntocode.lud00.voiceapplication> is running.
06-09 14:59:05.636 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: Use EGL_SWAP_BEHAVIOR_PRESERVED: false
06-09 14:59:05.636 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: CanvasContext() 0x7f81b1d000
06-09 14:59:05.670 4295-4295/fr.borntocode.lud00.voiceapplication I/[MALI][Gralloc]: [+]r_hnd(0x7f6b759080), client(42), share_fd(40)
06-09 14:59:05.670 4295-4295/fr.borntocode.lud00.voiceapplication D/GraphicBuffer: register, handle(0x7f6b759080) (w:1088 h:2048 s:1088 f:0x1 u:0x000100)
06-09 14:59:05.671 4295-4295/fr.borntocode.lud00.voiceapplication D/ViewRootImpl: hardware acceleration is enabled, this = ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}
06-09 14:59:05.674 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Resuming ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}} with isForward=true
06-09 14:59:05.675 4295-4295/fr.borntocode.lud00.voiceapplication D/lenovotintstatusbar: Check tint and icon theme, false, false
06-09 14:59:05.675 4295-4295/fr.borntocode.lud00.voiceapplication V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}, this =com.android.internal.policy.PhoneWindow$DecorView{f2edea2 V.E...... R.....ID 0,0-0,0}
06-09 14:59:05.675 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Scheduling idle handler for ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:05.676 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-LAUNCH_ACTIVITY handled : 0 / ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:05.676 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:05.676 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 3 / android.os.BinderProxy@727c897
06-09 14:59:05.677 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Finishing stop of ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}: show=false win=com.android.internal.policy.PhoneWindow@780cc8
06-09 14:59:05.677 4295-4295/fr.borntocode.lud00.voiceapplication V/PhoneWindow: DecorView setVisiblity: visibility = 4 ,Parent =ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}, this =com.android.internal.policy.PhoneWindow$DecorView{f2edea2 I.E...... R.....ID 0,0-0,0}
06-09 14:59:05.677 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-STOP_ACTIVITY_HIDE handled : 0 / android.os.BinderProxy@727c897
06-09 14:59:05.746 4295-4295/fr.borntocode.lud00.voiceapplication W/art: Before Android 4.1, method int android.support.v7.widget.ListViewCompat.lookForSelectablePosition(int, boolean) would have incorrectly overridden the package-private method in android.widget.ListView
06-09 14:59:05.969 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:06.521 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Performing resume of ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:06.522 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-AM_ON_RESUME_CALLED ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:06.522 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Resume ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}} started activity: false, hideForNow: false, finished: false
06-09 14:59:06.522 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Resuming ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}} with isForward=true
06-09 14:59:06.522 4295-4295/fr.borntocode.lud00.voiceapplication D/lenovotintstatusbar: Check tint and icon theme, false, false
06-09 14:59:06.522 4295-4295/fr.borntocode.lud00.voiceapplication V/PhoneWindow: DecorView setVisiblity: visibility = 0 ,Parent =ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}, this =com.android.internal.policy.PhoneWindow$DecorView{f2edea2 V.E...... R.....ID 0,0-1080,1920}
06-09 14:59:06.522 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Scheduling idle handler for ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:06.523 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-RESUME_ACTIVITY handled : 1 / android.os.BinderProxy@727c897
06-09 14:59:06.546 4295-4295/fr.borntocode.lud00.voiceapplication D/Surface: Surface::allocateBuffers(this=0x7f8341f000)
06-09 14:59:06.547 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: CanvasContext() 0x7f81b1d000 initialize window=0x7f8341f010, title=fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity
06-09 14:59:06.556 4295-4366/fr.borntocode.lud00.voiceapplication E/GED: Failed to get GED Log Buf, err(0)
06-09 14:59:06.557 4295-4366/fr.borntocode.lud00.voiceapplication I/OpenGLRenderer: Initialized EGL, version 1.4
06-09 14:59:06.560 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: Created EGL context (0x7f7d1d5980)
06-09 14:59:06.563 4295-4366/fr.borntocode.lud00.voiceapplication I/OpenGLRenderer: Get enable program binary service property (1)
06-09 14:59:06.563 4295-4366/fr.borntocode.lud00.voiceapplication I/OpenGLRenderer: Initializing program atlas...
06-09 14:59:06.563 4295-4366/fr.borntocode.lud00.voiceapplication D/ProgramBinary/Service: BpProgramBinaryService.getFileDescriptor
06-09 14:59:06.564 4295-4366/fr.borntocode.lud00.voiceapplication D/ProgramBinary/Service: BpProgramBinaryService.getProgramMapLen
06-09 14:59:06.564 4295-4366/fr.borntocode.lud00.voiceapplication D/ProgramBinary/Service: BpProgramBinaryService.getProgramMapArray
06-09 14:59:06.565 4295-4366/fr.borntocode.lud00.voiceapplication D/ProgramBinary/Service: BpProgramBinaryService.getProgramBinaryLen
06-09 14:59:06.565 4295-4366/fr.borntocode.lud00.voiceapplication I/OpenGLRenderer: Program binary detail: Binary length is 172384, program map length is 152.
06-09 14:59:06.565 4295-4366/fr.borntocode.lud00.voiceapplication I/OpenGLRenderer: Succeeded to mmap program binaries. File descriptor is 47, and path is /dev/ashmemk.
06-09 14:59:06.565 4295-4366/fr.borntocode.lud00.voiceapplication I/OpenGLRenderer: No need to use file discriptor anymore, close fd(47).
06-09 14:59:06.567 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: Initializing program cache from 0x7f86eb9cf8, size = 6
06-09 14:59:06.570 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: -- init (key = 0x0000000000000000)
06-09 14:59:06.570 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: -- not init (key = 0x0000000000500040)
06-09 14:59:06.572 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: -- init (key = 0x0000000000500041)
06-09 14:59:06.573 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: -- init (key = 0x0000000800000003)
06-09 14:59:06.574 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: -- init (key = 0x0000001000500040)
06-09 14:59:06.575 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: -- init (key = 0x0000003800000000)
06-09 14:59:06.576 4295-4366/fr.borntocode.lud00.voiceapplication D/Surface: Surface::connect(this=0x7f8341f000,api=1)
06-09 14:59:06.577 4295-4366/fr.borntocode.lud00.voiceapplication W/libEGL: [ANDROID_RECORDABLE] format: 1
06-09 14:59:06.578 4295-4366/fr.borntocode.lud00.voiceapplication D/mali_winsys: new_window_surface returns 0x3000
06-09 14:59:06.579 4295-4295/fr.borntocode.lud00.voiceapplication V/InputMethodManager: onWindowFocus: android.support.v7.widget.AppCompatEditText{70bd04e VFED..CL. .F....ID 614,0-704,136 #7f0c0054 app:id/nombreManche} softInputMode=288 first=true flags=#81810100
06-09 14:59:06.580 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:06.581 4295-4295/fr.borntocode.lud00.voiceapplication V/InputMethodManager: START INPUT: android.support.v7.widget.AppCompatEditText{70bd04e VFED..CL. .F....ID 614,0-704,136 #7f0c0054 app:id/nombreManche} ic=com.android.internal.widget.EditableInputConnection@b910d09 tba=android.view.inputmethod.EditorInfo@cb17b0e controlFlags=#107
06-09 14:59:06.600 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: CacheTexture 3 upload: x, y, width height = 0, 0, 258, 301
06-09 14:59:06.607 4295-4366/fr.borntocode.lud00.voiceapplication I/[MALI][Gralloc]: [+]r_hnd(0x7f7d1e3400), client(42), share_fd(50)
06-09 14:59:06.607 4295-4366/fr.borntocode.lud00.voiceapplication D/GraphicBuffer: register, handle(0x7f7d1e3400) (w:1080 h:1920 s:1088 f:0x1 u:0x000b00)
06-09 14:59:06.611 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: ProgramCache save to disk, size = 6
06-09 14:59:06.626 4295-4366/fr.borntocode.lud00.voiceapplication I/[MALI][Gralloc]: [+]r_hnd(0x7f7d1e34a0), client(42), share_fd(53)
06-09 14:59:06.626 4295-4366/fr.borntocode.lud00.voiceapplication D/GraphicBuffer: register, handle(0x7f7d1e34a0) (w:1080 h:1920 s:1088 f:0x1 u:0x000b00)
06-09 14:59:06.659 4295-4366/fr.borntocode.lud00.voiceapplication I/[MALI][Gralloc]: [+]r_hnd(0x7f7d1e3540), client(42), share_fd(52)
06-09 14:59:06.659 4295-4366/fr.borntocode.lud00.voiceapplication D/GraphicBuffer: register, handle(0x7f7d1e3540) (w:1080 h:1920 s:1088 f:0x1 u:0x000b00)
06-09 14:59:06.926 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:07.094 4295-4366/fr.borntocode.lud00.voiceapplication I/[MALI][Gralloc]: [+]r_hnd(0x7f7d1e3680), client(42), share_fd(56)
06-09 14:59:07.094 4295-4366/fr.borntocode.lud00.voiceapplication D/GraphicBuffer: register, handle(0x7f7d1e3680) (w:1080 h:1920 s:1088 f:0x1 u:0x000b00)
06-09 14:59:07.182 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:07.436 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:07.701 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:07.963 4295-4295/fr.borntocode.lud00.voiceapplication D/ViewRootImpl: doProcessInputEvents ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}
06-09 14:59:07.963 4295-4295/fr.borntocode.lud00.voiceapplication D/View: Touch up dispatch to android.support.v7.widget.AppCompatEditText{70bd04e VFED..CL. .F.P.... 614,0-704,136 #7f0c0054 app:id/nombreManche}, event = MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=60.331177, y[0]=33.793335, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=9136433, downTime=9136357, deviceId=7, source=0x1002 }
06-09 14:59:07.964 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:08.628 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:08.894 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:09.167 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:09.424 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:09.715 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:09.855 4295-4295/fr.borntocode.lud00.voiceapplication I/View: Key down dispatch to android.support.v7.widget.AppCompatEditText{70bd04e VFED..CL. .F...... 614,0-704,136 #7f0c0054 app:id/nombreManche}, event = KeyEvent { action=ACTION_DOWN, keyCode=KEYCODE_3, scanCode=0, metaState=0, flags=0x6, repeatCount=0, eventTime=9138324, downTime=9138324, deviceId=-1, source=0x0 }
06-09 14:59:09.860 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: [ANR Warning]Input routeing takes more than 6000ms since 1970-01-01 01:00:00.000, this = ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}
06-09 14:59:09.860 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$EarlyPostImeInputStage@c795dca at 2017-06-09 14:59:09.853
06-09 14:59:09.860 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$NativePostImeInputStage@e7cab3b at 2017-06-09 14:59:09.855
06-09 14:59:09.860 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$ViewPostImeInputStage@1e31258 at 2017-06-09 14:59:09.855
06-09 14:59:09.861 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$SyntheticInputStage@555cfb1 at 2017-06-09 14:59:09.857
06-09 14:59:09.865 4295-4295/fr.borntocode.lud00.voiceapplication I/View: Key up dispatch to android.support.v7.widget.AppCompatEditText{70bd04e VFED..CL. .F...... 614,0-704,136 #7f0c0054 app:id/nombreManche}, event = KeyEvent { action=ACTION_UP, keyCode=KEYCODE_3, scanCode=0, metaState=0, flags=0x6, repeatCount=0, eventTime=9138324, downTime=9138324, deviceId=-1, source=0x0 }
06-09 14:59:09.865 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: [ANR Warning]Input routeing takes more than 6000ms since 1970-01-01 01:00:00.000, this = ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}
06-09 14:59:09.866 4295-4366/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: CacheTexture 3 upload: x, y, width height = 136, 65, 27, 42
06-09 14:59:09.866 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$EarlyPostImeInputStage@c795dca at 2017-06-09 14:59:09.864
06-09 14:59:09.866 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$NativePostImeInputStage@e7cab3b at 2017-06-09 14:59:09.864
06-09 14:59:09.866 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$ViewPostImeInputStage@1e31258 at 2017-06-09 14:59:09.864
06-09 14:59:09.867 4295-4295/fr.borntocode.lud00.voiceapplication V/ViewRootImpl: Input event delivered to android.view.ViewRootImpl$SyntheticInputStage@555cfb1 at 2017-06-09 14:59:09.865
06-09 14:59:09.960 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:10.201 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:10.463 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:10.692 4295-4295/fr.borntocode.lud00.voiceapplication D/ViewRootImpl: doProcessInputEvents ViewRoot{ca71be5 fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity,ident = 0}
06-09 14:59:10.692 4295-4295/fr.borntocode.lud00.voiceapplication D/View: Touch up dispatch to android.support.v7.widget.AppCompatButton{9a272ac VFED..C.. ...P.... 45,181-939,325 #7f0c0055 app:id/demarrerPartie}, event = MotionEvent { action=ACTION_UP, actionButton=0, id[0]=0, x[0]=367.57355, y[0]=55.687622, toolType[0]=TOOL_TYPE_FINGER, buttonState=0, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=9139161, downTime=9139085, deviceId=7, source=0x1002 }
06-09 14:59:10.692 4295-4295/fr.borntocode.lud00.voiceapplication V/SettingsInterface: invalidate [system]: current 7 != cached 0
06-09 14:59:10.723 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-AM_ON_PAUSE_CALLED ActivityRecord{85e8431 token=android.os.BinderProxy@727c897 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.MainActivity}}
06-09 14:59:10.732 4295-4295/fr.borntocode.lud00.voiceapplication D/ActivityThread: ACT-PAUSE_ACTIVITY handled : 1 / android.os.BinderProxy@727c897
06-09 14:59:10.734 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: Handling launch of ActivityRecord{300c017 token=android.os.BinderProxy@aa2fc04 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.ActivitePartie}} startsNotResumed=false
06-09 14:59:10.740 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:10.755 4295-4295/fr.borntocode.lud00.voiceapplication V/ActivityThread: ActivityRecord{300c017 token=android.os.BinderProxy@aa2fc04 {fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.ActivitePartie}}: app=android.app.Application@f66326d, appName=fr.borntocode.lud00.voiceapplication, pkg=fr.borntocode.lud00.voiceapplication, comp={fr.borntocode.lud00.voiceapplication/fr.hector.barneoud.stage.ActivitePartie}, dir=/data/app/fr.borntocode.lud00.voiceapplication-2/base.apk
06-09 14:59:10.756 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): fontPath =
06-09 14:59:10.756 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): fontName =
06-09 14:59:10.756 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: getVibeFontPathWithCTS(): isForceToSystemDefault = false
06-09 14:59:10.756 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: VIBEUI_setThemeFont(): sVibeFontPath = ,fontPath =
06-09 14:59:10.756 4295-4295/fr.borntocode.lud00.voiceapplication W/Typeface: VIBEUI_setThemeFont(): FontPath Not Changed!
06-09 14:59:10.760 4295-4295/fr.borntocode.lud00.voiceapplication E/MultiWindowProxy: getServiceInstance failed!
06-09 14:59:10.760 4295-4295/fr.borntocode.lud00.voiceapplication D/wangcy9: not using Theme.DeviceDefault / Theme.DeviceDefault.Light
06-09 14:59:10.985 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:11.258 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:11.556 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:11.838 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:12.134 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:12.440 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:12.737 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:13.036 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:13.328 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:13.623 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:13.924 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:14.254 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:14.588 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:14.892 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:15.190 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:24.000 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:24.402 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:24.682 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:24.979 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:25.274 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:25.572 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:25.867 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:26.163 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:26.461 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:26.758 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:27.059 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:27.353 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:27.651 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:27.947 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:28.245 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:28.252 4295-4304/fr.borntocode.lud00.voiceapplication I/System: FinalizerDaemon: finalize objects = 266
06-09 14:59:28.534 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:28.834 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:29.118 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:29.414 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:29.721 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:30.013 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:30.305 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:30.601 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:30.896 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:31.190 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:31.492 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:31.792 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:32.090 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:32.369 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:32.674 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:32.976 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:33.265 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:33.555 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:33.852 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:34.147 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:34.444 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:34.740 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:35.034 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:35.330 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:35.624 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:35.922 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:36.204 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:36.501 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:36.800 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:37.093 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:37.390 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:37.698 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:38.011 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:38.339 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:38.660 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:38.956 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:39.254 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:39.551 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:39.851 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:40.147 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:40.435 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:40.732 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:41.030 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:41.329 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:41.624 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:41.925 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:42.221 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:42.519 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:42.816 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:43.122 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:43.452 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:43.741 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:44.039 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:44.336 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:44.645 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:44.944 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:44.959 4295-4304/fr.borntocode.lud00.voiceapplication I/System: FinalizerDaemon: finalize objects = 149
06-09 14:59:45.252 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:45.553 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:45.857 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:46.182 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:46.479 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:46.777 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:47.098 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:47.395 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:47.690 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:47.988 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:48.285 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:48.583 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:48.879 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:49.179 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:49.476 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:49.770 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:50.070 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:50.367 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:50.658 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:50.956 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:51.243 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:51.552 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:51.893 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:52.191 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:52.480 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:52.794 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:53.086 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:53.383 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:53.680 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:53.977 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:54.273 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:54.569 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:54.866 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:55.158 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:55.473 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:55.780 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:56.077 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:56.369 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:56.670 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:56.979 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:57.275 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:57.571 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:57.870 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:58.184 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:58.490 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:58.785 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:59.081 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:59.378 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:59.675 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 14:59:59.970 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:00.263 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:00.553 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:00.848 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:01.143 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:01.444 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:01.756 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:01.763 4295-4304/fr.borntocode.lud00.voiceapplication I/System: FinalizerDaemon: finalize objects = 167
06-09 15:00:02.054 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:02.357 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:02.646 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:02.944 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:03.232 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:03.531 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:03.818 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:04.110 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:04.430 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:04.723 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:05.047 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:05.363 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:05.722 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:06.025 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:06.324 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:06.619 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:06.928 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:07.240 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:07.561 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:07.859 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:08.157 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:08.453 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:08.749 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:09.083 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:09.397 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:09.689 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:09.987 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:10.289 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:10.606 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:10.907 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:11.207 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:11.502 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:11.800 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:12.132 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:12.427 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:12.728 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:13.017 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:13.306 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:13.603 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:13.900 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:14.195 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:14.492 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:14.782 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:15.093 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:15.402 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:15.706 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:16.004 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:16.316 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:16.636 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:16.930 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:17.227 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:17.527 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:17.822 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:18.131 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:18.433 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:18.450 4295-4304/fr.borntocode.lud00.voiceapplication I/System: FinalizerDaemon: finalize objects = 167
06-09 15:00:18.730 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:19.025 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:19.314 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:19.610 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:19.903 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:20.199 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:20.520 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:20.817 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:21.124 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:21.423 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:21.715 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:22.025 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:22.322 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:22.620 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:22.923 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:23.245 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:23.544 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:23.860 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:24.162 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:24.471 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:24.783 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:25.083 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:25.366 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:25.662 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:25.971 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:26.291 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:26.591 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:26.885 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:27.181 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:27.477 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:27.770 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:28.064 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:28.363 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:28.661 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:28.952 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:29.266 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:29.565 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:29.864 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:30.176 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:30.476 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:30.773 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:31.082 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:31.394 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:31.704 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:32.003 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:32.296 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:32.592 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:32.906 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:33.213 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:33.511 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:33.837 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:34.156 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:34.450 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:34.759 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:35.054 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:35.362 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:35.373 4295-4304/fr.borntocode.lud00.voiceapplication I/System: FinalizerDaemon: finalize objects = 170
06-09 15:00:35.663 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:35.982 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:36.276 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:36.599 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:36.896 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:37.193 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:37.487 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:37.785 4295-4335/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:38.076 4295-4338/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:38.373 4295-4308/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:38.682 4295-4341/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:00:38.983 4295-4307/fr.borntocode.lud00.voiceapplication D/OpenGLRenderer: DecorView @f2edea2 is drawn by HWUI
06-09 15:
EDIT : Ajout des balises de code (la coloration syntaxique).
Explications disponibles ICI Merci d'y penser dans tes prochains messages. |
Je crois que c'est getServiceInstance failed! qui cause l'écran noir.
Le code qui lance la seconde activité depuis la MainAcitivity :
Intent intent = new Intent( MainActivity.this, ActivitePartie.class);
intent.putExtra(EXTRA_NB_MANCHES, this.nombreManches.getText().toString());
startActivity(intent);
MainActivity.this.finish();
Le code qui récupère la string (côté seconde activité) :
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activite_partie);
Intent intent = getIntent();
Le code qui lance la seconde activité depuis la MainAcitivity :
Intent intent = new Intent( MainActivity.this, ActivitePartie.class);
intent.putExtra(EXTRA_NB_MANCHES, this.nombreManches.getText().toString());
startActivity(intent);
MainActivity.this.finish();
Le code qui récupère la string (côté seconde activité) :
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activite_partie);
Intent intent = getIntent();
Je vois 2 launcher dans ton Manifest. Tu ne devrais en avoir qu'un seul.
As-tu essayé en debug pas-à-pas?
nombreManches est-il bien déclaré?
ActivitePartie s'affiche-t-elle? Récupères-tu bien la valeur passée via l'Intent dans le onCreate?
Essaie de mettre des logs, de type E par exemple, et de n'afficher que ceux-ci dans la console afin de voir où tu es passé.
As-tu essayé en debug pas-à-pas?
nombreManches est-il bien déclaré?
ActivitePartie s'affiche-t-elle? Récupères-tu bien la valeur passée via l'Intent dans le onCreate?
Essaie de mettre des logs, de type E par exemple, et de n'afficher que ceux-ci dans la console afin de voir où tu es passé.
Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre question
nombreManches est déclaré en attribut de la MainActivity :
private EditText nombreManches;
ActivitePartie ne s'affiche pas et ça produit un écran noir quand je clique sur le bouton qui exécute la fonction qui est censée lancer ActivitePartie
private EditText nombreManches;
ActivitePartie ne s'affiche pas et ça produit un écran noir quand je clique sur le bouton qui exécute la fonction qui est censée lancer ActivitePartie
En filtrant sur log type E (j'ai enlevé le launcher déclaré dans ActivitePartie dans le Manifest) :
06-09 16:18:48.288 10303-10303/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/Padauk.ttf
06-09 16:18:48.301 10303-10303/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/NanumGothic.ttf
06-09 16:18:48.301 10303-10303/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/DroidSansFallback.ttf
06-09 16:18:48.301 10303-10303/fr.borntocode.lud00.voiceapplication E/Minikin: addFont failed to create font /system/fonts/MTLmr3m.ttf
06-09 16:18:48.372 10303-10303/fr.borntocode.lud00.voiceapplication E/MultiWindowProxy: getServiceInstance failed!
06-09 16:18:48.572 10303-10422/fr.borntocode.lud00.voiceapplication E/GED: Failed to get GED Log Buf, err(0)
06-09 16:18:51.647 10303-10303/fr.borntocode.lud00.voiceapplication E/MultiWindowProxy: getServiceInstance failed!
J'ai résolu mon problème, il y avait un bug dans la fonction de mon jeu qui tire aléatoirement une carte et ça faisait une boucle infinie, mais je trouve bizarre qu'android n'est pas considéré que l'application met trop de temps à répondre...
Mais j'ai un autre problème, mon jeu est censé dire du texte, mais ça ne marche pas.
Le petit test simple this.speakOut(new String("Bonjour"));
ne marche pas
Mais j'ai un autre problème, mon jeu est censé dire du texte, mais ça ne marche pas.
Le petit test simple this.speakOut(new String("Bonjour"));
ne marche pas
private void speakOut(String texte) {
this.speaker = new Speaker(this);
if(!this.speaker.isSpeaking()) {
this.speaker.speak(texte);
this.speaker.pause(SHORT_DURATION);
}
}
public class Speaker implements OnInitListener {
private static Locale language = Locale.FRANCE;
private static TextToSpeech tts;
private boolean isReady = false;
public Speaker(Context context){
tts = new TextToSpeech(context, this);
tts.setPitch(0.8f);
tts.setSpeechRate(0.9f);
}
@Override
public void onInit(int status) {
if(status == TextToSpeech.SUCCESS){
tts.setLanguage(language);
isReady = true;
} else{
isReady = false;
}
}
public void speak(String text){
if(isReady) {
tts.speak(text, TextToSpeech.QUEUE_ADD, null, null);
}
}
public void setSpeedRate(float speechrate) {
tts.setSpeechRate(speechrate);
}
public void setPitchRate(float pitchrate) {
tts.setPitch(pitchrate);
}
public boolean isSpeaking() {
return tts.isSpeaking();
}
public void pause(int duration){
tts.playSilentUtterance(duration, TextToSpeech.QUEUE_ADD, null);
}
public void stop() {
tts.stop();
}
public void destroy() {
tts.shutdown();
}
}