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'
}
}









share|improve this question






















  • 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















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'
}
}









share|improve this question






















  • 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













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'
}
}









share|improve this question













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






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 19 at 14:05









user10606381

111




111












  • 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
















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












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.






share|improve this answer





















  • 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











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















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

























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.






share|improve this answer





















  • 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















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.






share|improve this answer





















  • 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













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.






share|improve this answer












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.







share|improve this answer












share|improve this answer



share|improve this answer










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


















  • 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


















 

draft saved


draft discarded



















































 


draft saved


draft discarded














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





















































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







Popular posts from this blog

404 Error Contact Form 7 ajax form submitting

How to know if a Active Directory user can login interactively

TypeError: fit_transform() missing 1 required positional argument: 'X'