All Questions
Tagged with html-input android
17 questions
10
votes
5
answers
10k
views
HTML input type="file" not working to pull up camera for Pixel / android 14 combination
I posted this in the react-native-webview discussion thread in GitHub in case this is something they need to add support for, but wanted to see if anyone had any thoughts here:
Disclaimer: I'm a web ...
3
votes
0
answers
249
views
Android WebView translation missing in date and time picker for HTML input type date and time
When I use HTML input type time or date in an Android WebView, then the translation for set and clear is missing in the date and time picker.
In this example I'm using Dutch as language.
Sample ...
4
votes
2
answers
2k
views
Google Chrome 101 on Android shows TAB key on soft keyboard instead of ENTER for HTML input field
I am using Chrome 101 on Android 11. Setting the focus on a HTML input field brings up the soft keyboard. In earlier versions of Chrome, the soft keyboard then had the ENTER key on the lower right:
...
14
votes
3
answers
7k
views
How to avoid <input /> field from showing `next` option instead of `go` (On mobile keyboard)
Having an input field like:
<input type="text" />
Will automatically (on Android) change the Enter option on your keyboard to say Next, and it will jump to the next field.
How to ...
0
votes
1
answer
1k
views
Input with autofocus property on Android browsers
When using
<input type='text' autofocus>
the user can directly start typing after loading the page on a computer browser, without any other click.
On Chrome Android, the input receives indeed ...
3
votes
1
answer
1k
views
Function setSelectionRange is not working in Android browser
I am trying to do something like this in a directive in Angularjs. The problem is this works fine in system but when I check the same in Android phone it is failing to set the caret position. I ...
2
votes
0
answers
1k
views
Why do input type="date" and "time" load blank on mobile devices even with a value set?
I'm having an issue where I have two inputs of type date and time that have the value attribute are showing up as blank input boxes.
Example:
<input type="date" value="2016-11-11&...
6
votes
1
answer
9k
views
file input - accept image from camera or gallery on android
I have Form in my website that accepts a file input. the code for the input is here:
<input type="file" accept="image/*" capture/>
When I run this on my note 4 with google chrome for android I ...
1
vote
1
answer
394
views
html input box on android has a green highlight on tap
we have a phonegap app for android.
on android 4.1.1 on a HTC device we have the following problem:
when tapped an input box gets a green highlighting. however the actual problem is that you tap a ...
0
votes
1
answer
1k
views
Numeric keyboard as default, but allow text
I'm currently developing an application targeted at android and desktop devices using apache cordova and HTML5.
In order to get the numeric keyboard to pop up I've used input type="number", which ...
5
votes
2
answers
6k
views
What models of Samsung smartphones have missing period for html5 input type="number"?
HTML5 has a new input type named "number". On most mobile smartphones this brings up a numeric keypad. On pre-html5 phones the type falls back to "text" and we are OK. Yet, on some models the numeric ...
3
votes
1
answer
2k
views
Behavior of Non-standard attribute "capture" in input type=file tag in Android
I try to use the following to obtain image from Android phones:
<input type="file" name="file_camera" accept="image/*" capture="camera" />
Android 2.x: the capture attribute is ignored, and ...
33
votes
3
answers
11k
views
Android browser refreshes page after selecting file via input element
I have a mobile web page which includes an input element of type 'file', to allow users to upload image files to a server. The page works fine on iOS, and on a Nexus 4 (Android 4.2.1) in the Chrome ...
1
vote
3
answers
5k
views
Send a textstring from android app to a form on a website?
I'm trying to paste a string from my application to a website.
My application looks as following: one EditText and one Button. My button opens a website with an open text box.
<input name="...
15
votes
5
answers
9k
views
Samsung Galaxy Tablet does not allow entering floating point numbers to inputs with "number" type
Our client wants us to display numeric keyboard for an input field so basically I created a field like:
<input type="number" name="quantity" step=".01" value="0.00" />
However, Galaxy Tablet ...