Questions tagged [window-soft-input-mode]

117 questions
0
votes
1 answer

How to change windowSoftInputMode

I have an Android application, it works. In one activity, I have a simplet EditText and a Button. So when I click on the EditText, the keyboard is showing, but It is on the button. I don't want this, I don't know if is possibile to traslate to top…
bircastri
  • 2,169
  • 13
  • 50
  • 119
0
votes
2 answers

Not able to hide default soft keyboard programatically in Nexus 7 tab

I am working on an app where I need to open my own custom soft keyboard for text input.To do that I am disabling the default soft keyboard and enabling the custom one. It works fine on Jelly Bean version. However when I run the same code on Nexus 7…
0
votes
0 answers

How can I relayout my window to show the softinput keyboard?

I know there's statexxx and adjustxxx but neither is my desired behavior. Suppose I have a ListView (match_parent x match_parent) and a EditText (match_parent * wrap_content) which sits at the bottom of screen. When the soft keyboard appears , I…
suitianshi
  • 3,300
  • 1
  • 17
  • 34
0
votes
0 answers

Android custom dialog and soft input

I have a dialog if(this.oDialogo==null) { this.oDialogo = new Dialog(this, android.R.style.Theme_Translucent_NoTitleBar); } this.oDialogo.show(); this.oDialogo.setContentView(R.layout.dialog_stuff); Inside, i have one EditText and two…
pojomx
  • 780
  • 2
  • 11
  • 24
0
votes
0 answers

keyboard block textbox jquery mobile

Hi i am new for jquery mobile.I am developed a mobile app which use together with jquery mobile and phonegap i facing a problem nw. When keyboard is popup , it block my textbox. Please c my code below phonegap AndroidManifest.xml
user998405
  • 1,329
  • 5
  • 41
  • 84
0
votes
1 answer

XML android:windowSoftInputMode isn't working exactly how I want

I have a simple layout, shown below:
user2323030
  • 1,193
  • 4
  • 16
  • 37
0
votes
2 answers

Android Keyboard obscuring textarea in webview

I am building an Android App. It is a WebView app using JQuery Mobile Version 1.4.0. My app is set in fullscreen mode with no titlebar. In the App there is a form with a textarea at the bottom of the page. When the textarea is focused the…
amburnside
  • 1,943
  • 5
  • 24
  • 43
-1
votes
5 answers

Layout not adjust when keyboard opens

Hi i have the following layout in activity.xml file
Rajeev Kumar
  • 4,901
  • 8
  • 48
  • 83
-1
votes
2 answers

Still my layout not shifting up side.

I am trying to shift my layout up when soft keyboard will open. I have edittext and button. I can see edittext clearly whether keyboard is open or not but problem is that i am showing drop down for edittext. When drop down open it open on top of…
Sandip Armal Patil
  • 6,241
  • 21
  • 93
  • 160
-2
votes
1 answer

How to always show soft keyboard and do not let it be closed?

I want to know 2 things how to always show soft keyboard and do not let it be closed ( even when back or OK button was pressed ) ? and how can I get an input from it? I have already tried this code: EditText yourEditText= (EditText)…
-2
votes
1 answer

How to enable the softInput on the editText

I disabled softInput on my editText using public static void disableSoftInputFromAppearing(EditText editText) { editText.setRawInputType(InputType.TYPE_CLASS_TEXT); editText.setTextIsSelectable(true); } But now I don't know how…
lijo050
  • 233
  • 4
  • 14
-3
votes
2 answers

Android: Recycler view is not scrolling to last position

I am trying to create a chat screen by using the Recycler view. Because of chat when ever user enter to the screen the list should scroll to last position. My problem is when keyboard open the list is hiding. If we use adjust pan, entire view is…
Binil Surendran
  • 2,524
  • 6
  • 35
  • 58
1 2 3 4 5 6 7
8