android-virtual-keyboard

Soft keyboard is not visible on Android with Qt 5.15 on any input

你说的曾经没有我的故事 提交于 2020-11-30 00:09:44
问题 We migrated from 5.12.9 to 5.15.2 and now soft Android keyboard is not visible (does not popup) on active focus for any of our inputs or text fields. Is it a bug (QTBUG-88069) or some workaround exists? Following Stackoverflow solution or setting/clearing window flags does not work for me. 来源: https://stackoverflow.com/questions/64629611/soft-keyboard-is-not-visible-on-android-with-qt-5-15-on-any-input

Soft keyboard is not visible on Android with Qt 5.15 on any input

馋奶兔 提交于 2020-11-30 00:06:55
问题 We migrated from 5.12.9 to 5.15.2 and now soft Android keyboard is not visible (does not popup) on active focus for any of our inputs or text fields. Is it a bug (QTBUG-88069) or some workaround exists? Following Stackoverflow solution or setting/clearing window flags does not work for me. 来源: https://stackoverflow.com/questions/64629611/soft-keyboard-is-not-visible-on-android-with-qt-5-15-on-any-input

Soft keyboard is not visible on Android with Qt 5.15 on any input

岁酱吖の 提交于 2020-11-30 00:06:48
问题 We migrated from 5.12.9 to 5.15.2 and now soft Android keyboard is not visible (does not popup) on active focus for any of our inputs or text fields. Is it a bug (QTBUG-88069) or some workaround exists? Following Stackoverflow solution or setting/clearing window flags does not work for me. 来源: https://stackoverflow.com/questions/64629611/soft-keyboard-is-not-visible-on-android-with-qt-5-15-on-any-input

Android+PhoneGap: android:windowSoftInputMode doesn't seem to work

浪尽此生 提交于 2019-12-19 05:54:35
问题 I'm developing a PhoneGap-based application and I googled much about how to make my webview adjust its height when virtual keyboard appears, or at least get height of the virtual keyboard. I found a lot of posts (including stackoverflow) which says that android:windowSoftInputMode="adjustResize" must be set in the manifest and I did that. I also found that for PhoneGap config.xml there's <preference name="android-windowSoftInputMode" value="adjustResize"/> setting and I pasted that too. I

EditText onClick not shows Virtual Keyboard

删除回忆录丶 提交于 2019-12-19 03:41:23
问题 If i click on my EditText, the virtual keyboard simple not shows up. The cursor is shown, but no keyboard to type on. I even tried it with manually open but just no works. Here is my code: public class CreateNote extends Activity { EditText titleEdit; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.createnote); titleEdit = (EditText) findViewById(R.id.titleEdit); titleEdit.setOnClickListener(new OnClickListener() {

EditText onClick not shows Virtual Keyboard

荒凉一梦 提交于 2019-12-19 03:41:17
问题 If i click on my EditText, the virtual keyboard simple not shows up. The cursor is shown, but no keyboard to type on. I even tried it with manually open but just no works. Here is my code: public class CreateNote extends Activity { EditText titleEdit; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.createnote); titleEdit = (EditText) findViewById(R.id.titleEdit); titleEdit.setOnClickListener(new OnClickListener() {

virtual keyboard hiding edit text, setting from fragment

a 夏天 提交于 2019-12-13 03:43:57
问题 Well problem is similar that Keyboard is hiding my edit text but is there some way to handle the virtual keyboard setting from my layout xml file or fragment class rather that from android manifest file. For example: we use android:windowSoftInputMode="adjustPan" from manifest file. What can we do if we want to change it from my layout xml file or from my fragment java class file . This requirement is simply because I need different behavior on different screens. an d above code adjust

How to hide the virtual keypad by clicking outside of an EditText?

北慕城南 提交于 2019-12-11 06:26:12
问题 I am new to Android development. My requirement is that I want to hide the android virtual keypad when I click on the outside of an EditText widget. Please help. 回答1: To hide the virtual keyboard you can execute the following code: InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE); imm.hideSoftInputFromWindow(myEditText.getWindowToken(), 0); Simply put that code inside the onTouchDown() method of an OnTouchListener that is tied to the parent layout.

Does “adb shell input text” simulate software keyboard input?

允我心安 提交于 2019-12-08 15:55:20
问题 adb shell input text "sometext" OR adb shell input keyevent eventid do these simulate actual input from a virtual/ hardware keyboard respectively ? I did not find any documentation for these commands on developer.android.com/ Is there any trusted documentation for these commands? 回答1: adb shell input help produces (after a long list of input devices): The commands and default sources are: text <string> (Default: touchscreen) keyevent [--longpress] <key code number or name> ... (Default:

Prevent fullscreen virtual keyboard on Android (Adobe Air app)

╄→гoц情女王★ 提交于 2019-12-07 14:26:30
问题 I want to prevent the virtual keyboard to go fullscreen on Android (landscape mode) in my Adobe Air made application. I have read there is a way to do this using android:imeOptions="flagNoExtractUi" in the layout xml, but I have not managed to find how to do it in Adobe Air. There is a android manifest tag in the descriptor xml, but I can't make it work. Here is how it is done in native Android development: Disabling the fullscreen editing view for soft keyboard input in landscape? Anyone