textfield & combobox problem in javafx android
up vote
2
down vote
favorite
I am having problem in simple javafx android app.
The problem is that i build very simple app with some text-fields and combobox in netbeans ide using gradle javafxmobile-plugin.
I run the app in android the textfield and combobox causes problem in android mobile .
The problem is that when i typed from keyboard in android nothing changes in text-field until i press space button, or choose suggestion in keyboard upper area.
Also when i type some text in text-field and switch another then the text transfor on other textfield which i typed using keyboard rather then orignal text-field.
The other problem i notis is that when i select value in combobox nothing changes. some time after tyring again and again changes. Also combobox allow multiple selects...
The working status of app on android devices....
working:
Company
Sumsung
Model number
QMobile Z10
Android version
5.1
not working:
Company
Sumsung
Model number
GT-190601
Android version
4.4.4
Company
Sumsung
Model number
SM-G900F
Android version
6.0.1
This is my gradle file
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.16'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.androidcontrols.Main'
dependencies {
}
jfxmobile {
javafxportsVersion = '8.60.11'
android {
manifest = 'src/android/AndroidManifest.xml'
}
}
java android javafx gluon-mobile javafxports
add a comment |
up vote
2
down vote
favorite
I am having problem in simple javafx android app.
The problem is that i build very simple app with some text-fields and combobox in netbeans ide using gradle javafxmobile-plugin.
I run the app in android the textfield and combobox causes problem in android mobile .
The problem is that when i typed from keyboard in android nothing changes in text-field until i press space button, or choose suggestion in keyboard upper area.
Also when i type some text in text-field and switch another then the text transfor on other textfield which i typed using keyboard rather then orignal text-field.
The other problem i notis is that when i select value in combobox nothing changes. some time after tyring again and again changes. Also combobox allow multiple selects...
The working status of app on android devices....
working:
Company
Sumsung
Model number
QMobile Z10
Android version
5.1
not working:
Company
Sumsung
Model number
GT-190601
Android version
4.4.4
Company
Sumsung
Model number
SM-G900F
Android version
6.0.1
This is my gradle file
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.16'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.androidcontrols.Main'
dependencies {
}
jfxmobile {
javafxportsVersion = '8.60.11'
android {
manifest = 'src/android/AndroidManifest.xml'
}
}
java android javafx gluon-mobile javafxports
There is a similar question reported for theComboBox
issue, with a solution here. If you are using a Gluon TextField with auto complete, aListView
is used in thePopup
, and for that there is another issue with solution here.
– José Pereda
Nov 19 at 14:33
add a comment |
up vote
2
down vote
favorite
up vote
2
down vote
favorite
I am having problem in simple javafx android app.
The problem is that i build very simple app with some text-fields and combobox in netbeans ide using gradle javafxmobile-plugin.
I run the app in android the textfield and combobox causes problem in android mobile .
The problem is that when i typed from keyboard in android nothing changes in text-field until i press space button, or choose suggestion in keyboard upper area.
Also when i type some text in text-field and switch another then the text transfor on other textfield which i typed using keyboard rather then orignal text-field.
The other problem i notis is that when i select value in combobox nothing changes. some time after tyring again and again changes. Also combobox allow multiple selects...
The working status of app on android devices....
working:
Company
Sumsung
Model number
QMobile Z10
Android version
5.1
not working:
Company
Sumsung
Model number
GT-190601
Android version
4.4.4
Company
Sumsung
Model number
SM-G900F
Android version
6.0.1
This is my gradle file
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.16'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.androidcontrols.Main'
dependencies {
}
jfxmobile {
javafxportsVersion = '8.60.11'
android {
manifest = 'src/android/AndroidManifest.xml'
}
}
java android javafx gluon-mobile javafxports
I am having problem in simple javafx android app.
The problem is that i build very simple app with some text-fields and combobox in netbeans ide using gradle javafxmobile-plugin.
I run the app in android the textfield and combobox causes problem in android mobile .
The problem is that when i typed from keyboard in android nothing changes in text-field until i press space button, or choose suggestion in keyboard upper area.
Also when i type some text in text-field and switch another then the text transfor on other textfield which i typed using keyboard rather then orignal text-field.
The other problem i notis is that when i select value in combobox nothing changes. some time after tyring again and again changes. Also combobox allow multiple selects...
The working status of app on android devices....
working:
Company
Sumsung
Model number
QMobile Z10
Android version
5.1
not working:
Company
Sumsung
Model number
GT-190601
Android version
4.4.4
Company
Sumsung
Model number
SM-G900F
Android version
6.0.1
This is my gradle file
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.3.16'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.androidcontrols.Main'
dependencies {
}
jfxmobile {
javafxportsVersion = '8.60.11'
android {
manifest = 'src/android/AndroidManifest.xml'
}
}
java android javafx gluon-mobile javafxports
java android javafx gluon-mobile javafxports
asked Nov 19 at 14:05
user10606381
111
111
There is a similar question reported for theComboBox
issue, with a solution here. If you are using a Gluon TextField with auto complete, aListView
is used in thePopup
, and for that there is another issue with solution here.
– José Pereda
Nov 19 at 14:33
add a comment |
There is a similar question reported for theComboBox
issue, with a solution here. If you are using a Gluon TextField with auto complete, aListView
is used in thePopup
, and for that there is another issue with solution here.
– José Pereda
Nov 19 at 14:33
There is a similar question reported for the
ComboBox
issue, with a solution here. If you are using a Gluon TextField with auto complete, a ListView
is used in the Popup
, and for that there is another issue with solution here.– José Pereda
Nov 19 at 14:33
There is a similar question reported for the
ComboBox
issue, with a solution here. If you are using a Gluon TextField with auto complete, a ListView
is used in the Popup
, and for that there is another issue with solution here.– José Pereda
Nov 19 at 14:33
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
If I had to guess, it sounds like the text element used by JavaFxPorts doesn't correctly handle composing text (which probably isn't a concept in JavaFx as it only makes sense on a highly autocomplete driven model like mobile). Words appear when you hit space because then the composing region is committed. If that's the case, the fix would be to fix javafx, or use a keyboard app that doesn't use the composing text paradigm. In particular the fix would be to display the text in the composing region, which it doesn't seem to be doing.
You may have some luck by setting the type of the input field to TYPE_NULL and telling the keyboard app to assume the editor attached to it is stupid/broken. But then you'll be losing features of the keyboard app in doing so.
Thanks for ver soon response.
– user10606381
Nov 19 at 14:26
Actualy my mobile have auto-complete feature so when i select some of them the text entered in textfield. But how i get ride of it if i whant auto comple feature in my mobile with this app....
– user10606381
Nov 19 at 14:28
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
If I had to guess, it sounds like the text element used by JavaFxPorts doesn't correctly handle composing text (which probably isn't a concept in JavaFx as it only makes sense on a highly autocomplete driven model like mobile). Words appear when you hit space because then the composing region is committed. If that's the case, the fix would be to fix javafx, or use a keyboard app that doesn't use the composing text paradigm. In particular the fix would be to display the text in the composing region, which it doesn't seem to be doing.
You may have some luck by setting the type of the input field to TYPE_NULL and telling the keyboard app to assume the editor attached to it is stupid/broken. But then you'll be losing features of the keyboard app in doing so.
Thanks for ver soon response.
– user10606381
Nov 19 at 14:26
Actualy my mobile have auto-complete feature so when i select some of them the text entered in textfield. But how i get ride of it if i whant auto comple feature in my mobile with this app....
– user10606381
Nov 19 at 14:28
add a comment |
up vote
0
down vote
If I had to guess, it sounds like the text element used by JavaFxPorts doesn't correctly handle composing text (which probably isn't a concept in JavaFx as it only makes sense on a highly autocomplete driven model like mobile). Words appear when you hit space because then the composing region is committed. If that's the case, the fix would be to fix javafx, or use a keyboard app that doesn't use the composing text paradigm. In particular the fix would be to display the text in the composing region, which it doesn't seem to be doing.
You may have some luck by setting the type of the input field to TYPE_NULL and telling the keyboard app to assume the editor attached to it is stupid/broken. But then you'll be losing features of the keyboard app in doing so.
Thanks for ver soon response.
– user10606381
Nov 19 at 14:26
Actualy my mobile have auto-complete feature so when i select some of them the text entered in textfield. But how i get ride of it if i whant auto comple feature in my mobile with this app....
– user10606381
Nov 19 at 14:28
add a comment |
up vote
0
down vote
up vote
0
down vote
If I had to guess, it sounds like the text element used by JavaFxPorts doesn't correctly handle composing text (which probably isn't a concept in JavaFx as it only makes sense on a highly autocomplete driven model like mobile). Words appear when you hit space because then the composing region is committed. If that's the case, the fix would be to fix javafx, or use a keyboard app that doesn't use the composing text paradigm. In particular the fix would be to display the text in the composing region, which it doesn't seem to be doing.
You may have some luck by setting the type of the input field to TYPE_NULL and telling the keyboard app to assume the editor attached to it is stupid/broken. But then you'll be losing features of the keyboard app in doing so.
If I had to guess, it sounds like the text element used by JavaFxPorts doesn't correctly handle composing text (which probably isn't a concept in JavaFx as it only makes sense on a highly autocomplete driven model like mobile). Words appear when you hit space because then the composing region is committed. If that's the case, the fix would be to fix javafx, or use a keyboard app that doesn't use the composing text paradigm. In particular the fix would be to display the text in the composing region, which it doesn't seem to be doing.
You may have some luck by setting the type of the input field to TYPE_NULL and telling the keyboard app to assume the editor attached to it is stupid/broken. But then you'll be losing features of the keyboard app in doing so.
answered Nov 19 at 14:14
Gabe Sechan
66.2k95996
66.2k95996
Thanks for ver soon response.
– user10606381
Nov 19 at 14:26
Actualy my mobile have auto-complete feature so when i select some of them the text entered in textfield. But how i get ride of it if i whant auto comple feature in my mobile with this app....
– user10606381
Nov 19 at 14:28
add a comment |
Thanks for ver soon response.
– user10606381
Nov 19 at 14:26
Actualy my mobile have auto-complete feature so when i select some of them the text entered in textfield. But how i get ride of it if i whant auto comple feature in my mobile with this app....
– user10606381
Nov 19 at 14:28
Thanks for ver soon response.
– user10606381
Nov 19 at 14:26
Thanks for ver soon response.
– user10606381
Nov 19 at 14:26
Actualy my mobile have auto-complete feature so when i select some of them the text entered in textfield. But how i get ride of it if i whant auto comple feature in my mobile with this app....
– user10606381
Nov 19 at 14:28
Actualy my mobile have auto-complete feature so when i select some of them the text entered in textfield. But how i get ride of it if i whant auto comple feature in my mobile with this app....
– user10606381
Nov 19 at 14:28
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53376368%2ftextfield-combobox-problem-in-javafx-android%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
There is a similar question reported for the
ComboBox
issue, with a solution here. If you are using a Gluon TextField with auto complete, aListView
is used in thePopup
, and for that there is another issue with solution here.– José Pereda
Nov 19 at 14:33