I am missing something, but i don't kow what

130 views
Skip to first unread message

Carlos De Luna

unread,
Oct 16, 2015, 11:34:54 AM10/16/15
to JavaFXAndroid
I am writing a baseball scoreboard app that connects to a web service on my baseball site and ives you the scoreboard of MLB, Mexican baseball League and Latin american winter leagues on real time...
the app works fine on desktop, but the apk shows a blak screen on my android...
If you need the code i cand send the zip (2.44 MB complete).
I want this project to be open source but i want it to be working fine before I publish it .
JSDK 8.0 U 60
Thanks in advance.

build.gradle
settings.gradle

José Pereda

unread,
Oct 17, 2015, 6:34:08 AM10/17/15
to JavaFXAndroid
Hi Carlos

I see that your gradle files are generated... Aren't you using Gluon Plugin for your IDE? That will help you creating an empty project, and all the files required. You just need to update the jfxmobile plugin version (to 1.0.3 now), and add your code to the main package.

Once you have tested it on desktop, if you are deploying it on Android, to know what's happening you need to check the console: Using (from Android/sdk/platform-tools) adb logcat from command line you will see the logs. Also you could add some System.out.println at certain points to check those are achieved. 

If you find an exception there, at least you will be able to know the origin of your problems. If you still need help, post here the log so we can have a look.

Jose

Carlos De Luna

unread,
Oct 21, 2015, 11:33:48 AM10/21/15
to José Pereda, JavaFXAndroid
Great help.... thanks a lot....
Some how something is missing when the pak is done...
there is a class that runs ok on desktp but seems to be creating a trouble on android, is the call to a webservice:
I/art     (26832): Rejecting re-init on previously-failed class java.lang.Class<com.delunasaenz.scoreboardWS.ScoreboardWSService>

W/System.err(26832): Exception in Application start method

I/System.out(26832): QuantumRenderer: shutdown

W/System.err(26832): java.lang.reflect.InvocationTargetException

W/System.err(26832): at java.lang.reflect.Method.invoke(Native Method)

W/System.err(26832): at java.lang.reflect.Method.invoke(Method.java:372)

W/System.err(26832): at javafxports.android.DalvikLauncher$1.run(DalvikLauncher.java:158)

W/System.err(26832): at java.lang.Thread.run(Thread.java:818)

W/System.err(26832): Caused by: java.lang.RuntimeException: Exception in Application start method

W/System.err(26832): at com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:917)

W/System.err(26832): at com.sun.javafx.application.LauncherImpl.lambda$launchApplication$137(LauncherImpl.java:182)

W/System.err(26832): at com.sun.javafx.application.LauncherImpl$$Lambda$2.run(Unknown Source)

W/System.err(26832): ... 1 more

W/System.err(26832): Caused by: java.lang.NoClassDefFoundError: com.delunasaenz.scoreboardWS.ScoreboardWSService

W/System.err(26832): at java.lang.reflect.ArtField.getTypeNative(Native Method)

W/System.err(26832): at java.lang.reflect.ArtField.getType(ArtField.java:122)

W/System.err(26832): at java.lang.reflect.Field.getType(Field.java:135)

W/System.err(26832): at java.lang.Class.getDeclaredFields(Class.java:951)

W/System.err(26832): at javafx.fxml.FXMLLoader$ControllerAccessor.addAccessibleFields(FXMLLoader.java:3437)

W/System.err(26832): at javafx.fxml.FXMLLoader$ControllerAccessor.access$3900(FXMLLoader.java:3305)

W/System.err(26832): at javafx.fxml.FXMLLoader$ControllerAccessor$1.run(FXMLLoader.java:3421)

W/System.err(26832): at javafx.fxml.FXMLLoader$ControllerAccessor$1.run(FXMLLoader.java:3417)

W/System.err(26832): at java.security.AccessController.doPrivileged(AccessController.java:45)

W/System.err(26832): at javafx.fxml.FXMLLoader$ControllerAccessor.addAccessibleMembers(FXMLLoader.java:3416)

W/System.err(26832): at javafx.fxml.FXMLLoader$ControllerAccessor.getControllerFields(FXMLLoader.java:3355)

W/System.err(26832): at javafx.fxml.FXMLLoader.injectFields(FXMLLoader.java:1159)

W/System.err(26832): at javafx.fxml.FXMLLoader.access$1600(FXMLLoader.java:103)

W/System.err(26832): at javafx.fxml.FXMLLoader$ValueElement.processValue(FXMLLoader.java:857)

W/System.err(26832): at javafx.fxml.FXMLLoader$ValueElement.processStartElement(FXMLLoader.java:751)

W/System.err(26832): at javafx.fxml.FXMLLoader.processStartElement(FXMLLoader.java:2707)

W/System.err(26832): at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2527)

W/System.err(26832): at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:2441)

W/System.err(26832): at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3214)

W/System.err(26832): at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3175)

W/System.err(26832): at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3148)

W/System.err(26832): at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3124)

W/System.err(26832): at javafx.fxml.FXMLLoader.loadImpl(FXMLLoader.java:3104)

W/System.err(26832): at javafx.fxml.FXMLLoader.load(FXMLLoader.java:3097)

W/System.err(26832): at com.delunasaenz.scoreboard.ScoreBoard.start(ScoreBoard.java:22)

W/System.err(26832): at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$144(LauncherImpl.java:863)

W/System.err(26832): at com.sun.javafx.application.LauncherImpl$$Lambda$9.run(Unknown Source)

W/System.err(26832): at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$157(PlatformImpl.java:326)

W/System.err(26832): at com.sun.javafx.application.PlatformImpl$$Lambda$7.run(Unknown Source)

W/System.err(26832): at com.sun.javafx.application.PlatformImpl.lambda$null$155(PlatformImpl.java:295)

W/System.err(26832): at com.sun.javafx.application.PlatformImpl$$Lambda$19.run(Unknown Source)

W/System.err(26832): at java.security.AccessController.doPrivileged(AccessController.java:52)

W/System.err(26832): at com.sun.javafx.application.PlatformImpl.lambda$runLater$156(PlatformImpl.java:294)

W/System.err(26832): at com.sun.javafx.application.PlatformImpl$$Lambda$6.run(Unknown Source)

W/System.err(26832): at com.sun.glass.ui.monocle.RunnableProcessor.runLoop(RunnableProcessor.java:92)

W/System.err(26832): at com.sun.glass.ui.monocle.RunnableProcessor.run(RunnableProcessor.java:51)

W/System.err(26832): ... 1 more


I would love to have any help and provide anyhing you need.

--
You received this message because you are subscribed to a topic in the Google Groups "JavaFXAndroid" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/javafxandroid/Adumif0W9_w/unsubscribe.
To unsubscribe from this group and all its topics, send an email to javafxandroi...@googlegroups.com.
To post to this group, send email to javafx...@googlegroups.com.
Visit this group at http://groups.google.com/group/javafxandroid.
To view this discussion on the web visit https://groups.google.com/d/msgid/javafxandroid/2d0a291d-55e5-49dd-9d12-1105055f6d79%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
ScoreboardWSService.java

Harry Mitchell

unread,
Oct 23, 2015, 5:14:57 PM10/23/15
to JavaFXAndroid
Hello Carlos,

Do you have the Internet permission in your android manifest file?  If not, you need to add this line to it:
<uses-permission android:name="android.permission.INTERNET" />

The Google Android documentation covers this:
http://developer.android.com/reference/android/Manifest.permission.html

Harry Mitchell

Carlos De Luna

unread,
Oct 27, 2015, 5:38:50 PM10/27/15
to Harry Mitchell, JavaFXAndroid
Pues si... así fue... los webservices los estoy haciendo jalar ahora con ksoap 3.4 
Gracias ...
Ahora el problema parece ser con unos fonts, pero no encuentro por qué.
--
You received this message because you are subscribed to a topic in the Google Groups "JavaFXAndroid" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/javafxandroid/Adumif0W9_w/unsubscribe.
To unsubscribe from this group and all its topics, send an email to javafxandroi...@googlegroups.com.
To post to this group, send email to javafx...@googlegroups.com.
Visit this group at http://groups.google.com/group/javafxandroid.

Carlos De Luna

unread,
Oct 27, 2015, 5:41:01 PM10/27/15
to Harry Mitchell, JavaFXAndroid
Seems like a problem with the javax classes to call webservices... using ksoap2 i got it running on both systems without any trouble.
now i need help because on adroid i am gettig an error about PrismaFont not fount... this is the result on the adb logcat for the app... i really hope some of you can have any idea on what to do.


E/art     (23259): dlopen("/vendor/lib/libjavafx_font.so", RTLD_LAZY) failed: dlopen failed: library "/vendor/lib/libjavafx_font.so" not found

E/art     (23259): dlopen("/system/lib/libjavafx_font.so", RTLD_LAZY) failed: dlopen failed: library "/system/lib/libjavafx_font.so" not found

W/System.err(23259): Loading FontFactory com.sun.javafx.font.freetype.FTFactory

W/System.err(23259): Subpixel: enabled

E/art     (23259): dlopen("/vendor/lib/libjavafx_font_freetype.so", RTLD_LAZY) failed: dlopen failed: library "/vendor/lib/libjavafx_font_freetype.so" not found

E/art     (23259): dlopen("/system/lib/libjavafx_font_freetype.so", RTLD_LAZY) failed: dlopen failed: library "/system/lib/libjavafx_font_freetype.so" not found

W/System.err(23259): Freetype2 Loaded (version 2.5.0)

W/System.err(23259): LCD support Enabled

W/art     (23259): Before Android 4.1, method void com.sun.javafx.scene.transform.TransformUtils$ImmutableTransform.ensureCanTransform2DPoint() would have incorrectly overridden the package-private method in javafx.scene.transform.Transform

W/System.err(23259): java.lang.Exception: Font name not found.

W/System.err(23259):  at com.sun.javafx.font.PrismFontFile.init(PrismFontFile.java:530)

W/System.err(23259):  at com.sun.javafx.font.PrismFontFile.<init>(PrismFontFile.java:103)

W/System.err(23259):  at com.sun.javafx.font.freetype.FTFontFile.<init>(FTFontFile.java:57)

W/System.err(23259):  at com.sun.javafx.font.freetype.FTFactory.createFontFile(FTFactory.java:75)

W/System.err(23259):  at com.sun.javafx.font.PrismFontFactory.createFontResource(PrismFontFactory.java:273)

W/System.err(23259):  at com.sun.javafx.font.PrismFontFactory.createFontResource(PrismFontFactory.java:260)

W/System.err(23259):  at com.sun.javafx.font.PrismFontFactory.populateFontFileNameMapGeneric(PrismFontFactory.java:1883)

W/System.err(23259):  at com.sun.javafx.font.PrismFontFactory.getFullNameToFileMap(PrismFontFactory.java:1776)

W/System.err(23259):  at com.sun.javafx.font.PrismFontFactory.getFontResource(PrismFontFactory.java:469)

W/System.err(23259):  at com.sun.javafx.font.LogicalFont.getSlot0Resource(LogicalFont.java:194)

W/System.err(23259):  at com.sun.javafx.font.LogicalFont.getDefaultAAMode(LogicalFont.java:409)

W/System.err(23259):  at com.sun.javafx.font.LogicalFont.getStrike(LogicalFont.java:413)

W/System.err(23259):  at com.sun.javafx.font.PrismFont.getStrike(PrismFont.java:73)

W/System.err(23259):  at com.sun.javafx.text.PrismTextLayout.setContent(PrismTextLayout.java:138)

W/System.err(23259):  at javafx.scene.text.Text.getTextLayout(Text.java:229)

W/System.err(23259):  at javafx.scene.text.Text.needsFullTextLayout(Text.java:184)

W/System.err(23259):  at javafx.scene.text.Text.access$200(Text.java:95)

W/System.err(23259):  at javafx.scene.text.Text$5.invalidated(Text.java:501)

W/System.err(23259):  at javafx.beans.property.ObjectPropertyBase.markInvalid(ObjectPropertyBase.java:111)

W/System.err(23259):  at javafx.beans.property.ObjectPropertyBase.bind(ObjectPropertyBase.java:174)

W/System.err(23259):  at javafx.css.StyleableObjectProperty.bind(StyleableObjectProperty.java:75)

W/System.err(23259):  at com.sun.javafx.scene.control.skin.LabeledText.<init>(LabeledText.java:82)

W/System.err(23259):  at com.sun.javafx.scene.control.skin.LabeledSkinBase.<init>(LabeledSkinBase.java:125)

W/System.err(23259):  at com.sun.javafx.scene.control.skin.LabelSkin.<init>(LabelSkin.java:39)

W/System.err(23259):  at javafx.scene.control.Label.createDefaultSkin(Label.java:158)

W/System.err(23259):  at javafx.scene.control.Control.impl_processCSS(Control.java:859)

W/System.err(23259):  at javafx.scene.Parent.impl_processCSS(Parent.java:1269)

W/System.err(23259):  at javafx.scene.control.Control.impl_processCSS(Control.java:862)

W/System.err(23259):  at javafx.scene.Parent.impl_processCSS(Parent.java:1269)

W/System.err(23259):  at javafx.scene.Parent.impl_processCSS(Parent.java:1269)

W/System.err(23259):  at javafx.scene.Parent.impl_processCSS(Parent.java:1269)

W/System.err(23259):  at javafx.scene.Parent.impl_processCSS(Parent.java:1269)

W/System.err(23259):  at javafx.scene.control.Control.impl_processCSS(Control.java:855)

W/System.err(23259):  at javafx.scene.Parent.impl_processCSS(Parent.java:1269)

W/System.err(23259):  at javafx.scene.Parent.impl_processCSS(Parent.java:1269)

W/System.err(23259):  at javafx.scene.Node.processCSS(Node.java:9035)

W/System.err(23259):  at javafx.scene.Scene.doCSSPass(Scene.java:545)

W/System.err(23259):  at javafx.scene.Scene.preferredSize(Scene.java:1643)

W/System.err(23259):  at javafx.scene.Scene.impl_preferredSize(Scene.java:1720)

W/System.err(23259):  at javafx.stage.Window$9.invalidated(Window.java:834)

W/System.err(23259):  at javafx.beans.property.BooleanPropertyBase.markInvalid(BooleanPropertyBase.java:109)

W/System.err(23259):  at javafx.beans.property.BooleanPropertyBase.set(BooleanPropertyBase.java:144)

W/System.err(23259):  at javafx.stage.Window.setShowing(Window.java:910)

W/System.err(23259):  at javafx.stage.Window.show(Window.java:925)

W/System.err(23259):  at javafx.stage.Stage.show(Stage.java:259)

W/System.err(23259):  at com.delunasaenz.scoreboard.ScoreBoard.start(ScoreBoard.java:35)

W/System.err(23259):  at com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$144(LauncherImpl.java:863)

W/System.err(23259):  at com.sun.javafx.application.LauncherImpl$$Lambda$9.run(Unknown Source)

W/System.err(23259):  at com.sun.javafx.application.PlatformImpl.lambda$runAndWait$157(PlatformImpl.java:326)

W/System.err(23259):  at com.sun.javafx.application.PlatformImpl$$Lambda$7.run(Unknown Source)

W/System.err(23259):  at com.sun.javafx.application.PlatformImpl.lambda$null$155(PlatformImpl.java:295)

W/System.err(23259):  at com.sun.javafx.application.PlatformImpl$$Lambda$19.run(Unknown Source)

W/System.err(23259):  at java.security.AccessController.doPrivileged(AccessController.java:52)

W/System.err(23259):  at com.sun.javafx.application.PlatformImpl.lambda$runLater$156(PlatformImpl.java:294)

W/System.err(23259):  at com.sun.javafx.application.PlatformImpl$$Lambda$6.run(Unknown Source)

W/System.err(23259):  at com.sun.glass.ui.monocle.RunnableProcessor.runLoop(RunnableProcessor.java:92)

W/System.err(23259):  at com.sun.glass.ui.monocle.RunnableProcessor.run(RunnableProcessor.java:51)

W/System.err(23259):  at java.lang.Thread.run(Thread.java:818)

W/art     (23259): Before Android 4.1, method double javafx.scene.text.TextFlow.computeChildPrefAreaHeight(javafx.scene.Node, javafx.geometry.Insets) would have incorrectly overridden the package-private method in javafx.scene.layout.Region

W/art     (23259): Before Android 4.1, method double javafx.scene.text.TextFlow.computeChildPrefAreaWidth(javafx.scene.Node, javafx.geometry.Insets) would have incorrectly overridden the package-private method in javafx.scene.layout.Region

W/javafx.css(23259): Could not resolve '-fx-tab-border-color' while resolving lookups for '-fx-background-color' from rule '*.tab:selected' in stylesheet jar:file:/data/app/com.delunasaenz.scoreboard-2/base.apk!/com/beisbolicos/scoreboard/scoreboard.css

W/javafx.css(23259): Could not resolve '-fx-tab-border-color' while resolving lookups for '-fx-background-color' from rule '*.tab:top' in stylesheet jar:file:/data/app/com.delunasaenz.scoreboard-2/base.apk!/com/beisbolicos/scoreboard/scoreboard.css

W/javafx.css(23259): Could not resolve '-fx-tab-border-color' while resolving lookups for '-fx-background-color' from rule '*.control-buttons-tab' in stylesheet jar:file:/data/app/com.delunasaenz.scoreboard-2/base.apk!/com/beisbolicos/scoreboard/scoreboard.css

W/javafx.css(23259): Could not resolve '-fx-tab-border-color' while resolving lookups for '-fx-background-color' from rule '*.tab:selected' in stylesheet jar:file:/data/app/com.delunasaenz.scoreboard-2/base.apk!/com/beisbolicos/scoreboard/scoreboard.css

W/javafx.css(23259): Could not resolve '-fx-tab-border-color' while resolving lookups for '-fx-background-color' from rule '*.tab:top' in stylesheet jar:file:/data/app/com.delunasaenz.scoreboard-2/base.apk!/com/beisbolicos/scoreboard/scoreboard.css

W/javafx.css(23259): Could not resolve '-fx-tab-border-color' while resolving lookups for '-fx-background-color' from rule '*.control-buttons-tab' in stylesheet jar:file:/data/app/com.delunasaenz.scoreboard-2/base.apk!/com/beisbolicos/scoreboard/scoreboard.css

I/System.out(23259): max rectangle texture cell size = 62

I/System.out(23259): wrap rectangle texture = 2 x 2

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: AlphaTexture_Color.frag

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: FillRoundRect_Color.frag

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: FillRoundRect_LinearGradient_PAD.frag

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: Texture_Color.frag

I/System.out(23259): Loading Prism common native library ...

E/art     (23259): dlopen("/vendor/lib/libprism_common.so", RTLD_LAZY) failed: dlopen failed: library "/vendor/lib/libprism_common.so" not found

E/art     (23259): dlopen("/system/lib/libprism_common.so", RTLD_LAZY) failed: dlopen failed: library "/system/lib/libprism_common.so" not found

I/System.out(23259):  succeeded.

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: Solid_TextureRGB.frag

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: AlphaTexture_LinearGradient.frag

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: DrawRoundRect_Color.frag

I/System.out(23259): ES2ResourceFactory: Prism - createStockShader: DrawSemiRoundRect_Color.frag

I/System.out(23259): PPSRenderer: scenario.effect - createShader: LinearConvolveShadow_20

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/InputReader( 4120): Input event: value=1

I/InputReader( 4120): Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.1311 ] when=22225306218000

I/InputDispatcher( 4120): Delivering touch to (4460): action: 0x4, toolType: 1

I/InputDispatcher( 4120): Delivering touch to (23259): action: 0x0, toolType: 1

D/ViewRootImpl(23259): ViewPostImeInputStage ACTION_DOWN

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

D/InputReader( 4120): Input event: value=0

I/InputReader( 4120): Touch event's action is 0x1 (deviceType=0) [pCnt=1, s=] when=22225426239000

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/InputDispatcher( 4120): Delivering touch to (23259): action: 0x1, toolType: 1

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

I/System.out(23259): don't add points, primary = -1

D/BatteryService( 4120): !@BatteryListener : batteryPropertiesChanged!

D/BatteryService( 4120): level:71, scale:100, status:2, health:2, present:true, voltage: 4061, temperature: 360, technology: Li-ion, AC powered:false, USB powered:true, Wireless powered:false, icon:17303743, invalid charger:0

D/BatteryService( 4120): online:4, current avg:450, charge type:1, power sharing:false, high voltage charger:false, capacity:280000

D/BatteryService( 4120): Sending ACTION_BATTERY_CHANGED.

D/MotionRecognitionService( 4120):   mReceiver.onReceive : ACTION_BATTERY_CHANGED

I/MotionRecognitionService( 4120): Plugged

I/MotionRecognitionService( 4120): setPowerConnected  = true

D/KeyguardUpdateMonitor( 4460): received broadcast android.intent.action.BATTERY_CHANGED

D/KeyguardUpdateMonitor( 4460): handleBatteryUpdate

D/STATUSBAR-PhoneStatusBar( 4460):  mBrightnessEnablebySettings = false mBrightnessEnablebyBattery = true mBrightnessEnablebyDisableFlag = true mPmsBrightnessEnablebySettings = true

V/HeadsetService( 7978): HeadsetService - Received Intent.ACTION_BATTERY_CHANGED

D/HeadsetStateMachine( 7978): Disconnected process message: 10

D/MusicService( 2142): mSystemReceiver - batteryLevel: 71 batteryStatus: 2

W/ctxmgr  (14389): [PowerConnectionState]Got same value as before for power connection (Plug state: 2 BatteryLevel: 0.71)

D/BatteryMeterView( 4460): ACTION_BATTERY_CHANGED : level:71 status:2 health:2

D/BatteryMeterView( 4460): ACTION_BATTERY_CHANGED : level:71 status:2 health:2

D/BatteryMeterView( 4460): ACTION_BATTERY_CHANGED : level:71 status:2 health:2

D/StatusBar.NetworkController( 4460): onSignalStrengthsChanged signalStrength=SignalStrength: 13 99 -13 -200 -13 -200 -1 99 2147483647 2147483647 2147483647 -1 2147483647 0x4 gsm|lte level=4

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/StatusBar.NetworkController( 4460): refreshSignalCluster - setNWBoosterIndicators(false)

D/StatusBar.NetworkController( 4460): applyOpen

D/InputReader( 4120): Input event: value=1

I/InputReader( 4120): Touch event's action is 0x0 (deviceType=0) [pCnt=1, s=0.1312 ] when=22226980221000

I/InputDispatcher( 4120): Delivering touch to (4460): action: 0x4, toolType: 1

I/InputDispatcher( 4120): Delivering touch to (23259): action: 0x0, toolType: 1

D/ViewRootImpl(23259): ViewPostImeInputStage ACTION_DOWN

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

I/GLASS   (23259): Call InternalSurfaceView_onMultiTouchEventNative

I/GLASS   (23259): Glass will pass multitouchevent to monocle with count = 1

E/FXEntity(23259): call native MultitouchEvent

Thanks in advance.
GameResult.fxml
scoreboard.css

Даниэль Циммерманн

unread,
Oct 30, 2015, 9:15:46 AM10/30/15
to JavaFXAndroid, harryvm...@gmail.com
tl;dr

Font issues... Sounds kind of familiar. What kind of phone you are trying to start the application on?

Carlos De Luna

unread,
Oct 30, 2015, 12:09:16 PM10/30/15
to Даниэль Циммерманн, JavaFXAndroid, harryvm...@gmail.com
Samsung S5 is the phone... lates updates (Android 5)

El vie., 30 de oct. de 2015 a la(s) 7:15 a. m., Даниэль Циммерманн <zim.d...@gmail.com> escribió:
tl;dr

Font issues... Sounds kind of familiar. What kind of phone you are trying to start the application on?

--
You received this message because you are subscribed to a topic in the Google Groups "JavaFXAndroid" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/javafxandroid/Adumif0W9_w/unsubscribe.
To unsubscribe from this group and all its topics, send an email to javafxandroi...@googlegroups.com.
To post to this group, send email to javafx...@googlegroups.com.
Visit this group at http://groups.google.com/group/javafxandroid.

Даниэль Циммерманн

unread,
Oct 30, 2015, 12:26:50 PM10/30/15
to JavaFXAndroid
Please check this issue and try, if you're affected by it as well.

https://bitbucket.org/javafxports/javafxmobile-plugin/issues/28/lollipop-51-and-error-with-gradient

Reply all
Reply to author
Forward
0 new messages