Tagged Questions
0
votes
1answer
31 views
The ultimate solution to cross-browser vertical centering?
Short and painless, I've tried many ways to get an element, e.g. info text, absolutely centered (H/V) without using divs, Javascript, jQuery or whatsoever.
The problem is not getting this to work and ...
0
votes
0answers
32 views
Appending Image in Android using html
String checkString = "<html><head><script type='text/javascript' src='//code.jquery.com/jquery-1.9.1.js'></script>" +
"<script ...
0
votes
0answers
39 views
what are the reasons for these problems in phone gap?
I am using cordova 2.1.0 for my phonegap application.
I have 2 problems,please help me figure it out.
Problem 1:
The on click functionality working on Google nexus device but not on Samsung galaxy ...
0
votes
1answer
25 views
Fill an HTML page with data
I've got a ListView, each item return the same WebView class after a click. I would like to fill some fields inside the HTML page with code passed as argument to create different content with the same ...
1
vote
1answer
33 views
PhoneGap: JavaScript Focus and Blur event in iOS / Android
I would like to detect the focus and blur event in HTML input text box in a PhoneGap mobile application.
For iOS, the behaviour is as expected - When the textbox is in focus (textbox is clicked), ...
1
vote
0answers
93 views
Link to add icon on android desktop
Assume that I have website http://example.com. Now I want to add there some link like 'Add do desktop' which will put icon with link to website on android/ios desktop. Is it even possible or user is ...
4
votes
1answer
240 views
Instagram custom URL scheme for Android
I need to run the Instagram Application, using the HTML link.
For iPhone I use iPhone Hooks(Instagram iPhone Hooks).
How can I do the same for Android?
2
votes
2answers
465 views
How to Get Response From URL using javascript
I am doing phone gap application for that i will get response from this url
http://www.apexweb.co.in/apex_quote/uname_validation.asp.
I dont know how to get response can any one help me with code.
32
votes
5answers
11k views
Disable Android browser's input overlays?
I've got a web page with some text inputs. The Android browser (at least on Android 2.3.4 which is all I've got now) seems to overlay its own control over the input on the page on focus.
The problem ...
11
votes
10answers
5k views
android autofit mode causing issues with css width in web page
I am having problems with the auto resize feature of the android browser. The widths on my site are going a bit haywire when the device is in portrait mode.
What I would like to do is
Have the same ...
12
votes
6answers
16k views
How to disable web page zooming/scaling on Android?
I have written a small web app to collect some data and store it in a central database. I'm walking around, reading values and typing them into a web site on my Android smartphone. It's just for me, ...
6
votes
3answers
12k views
Looking for an alternative for iScroll (Scrolling Div's on iOS/Webkit)
I built a complex forms over data mobile application and am now looking for a solution to persist the position of the title and the footer bar. In my dummy, which has been developed and tested with ...
18
votes
2answers
5k views
HTML: Why does Android browser show “Go” instead of “Next” in keyboard?
I have an HTML login form that contains following elements (in this order):
input type=text (user name input)
input type=password (password)
input type=submit (Login button)
Why does the Android ...
16
votes
3answers
15k views
Is it possible to get the HTML code from WebView
I would like to preemptively get the HTML code of a webpage that is to be loaded in a webView, parse it using regex, and display only the HTML code that I want, while letting the webpage still think ...
115
votes
3answers
54k views
How to display HTML in TextView?
I have simple HTML
<h2>Title</h2><br>
<p>description here</p>
I want to display it in TextView. How to do this???
Any help would be appreciated.