Exception or error: I want to build a relatively simple version of my site for mobile phones, but I will definitely need JavaScript and jQuery for many functions. Googling didn’t help to find an answer. How is compatibility of jQuery with popular browsers in mobile phones? I am talking for smartphones. For example, the default …
Tag: browser
dns – Android Browser hostnames does not get resolved if domain name is not appended-ThrowExceptions
Exception or error: Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 7 years ago. I am trying open a site hosted on my localhost using machine name in an android browser. When I type in machine name …
javascript – PhoneGap Build: how to open external url in device browser on Android?-ThrowExceptions
Exception or error: External URL’s don’t open in the system’s browser in my PhoneGap Android application. I’m using PhoneGap Build 2.3.0. According to the Cordova documentation I used target ‘_system’: window.open(‘http://www.myurl.nl’, ‘_system’); In my config.xml I have: <plugin name=”InAppBrowser” value=”org.apache.cordova.InAppBrowser” /> <access origin=”*” browserOnly=”true” /> But still the links open in my apps webview. How …
html – Does android webview browsers support html5 features?-ThrowExceptions
Exception or error: I have HTML5 based web application i want it to integrate with WebView ,So does android webview browsers support html5 features? How to solve: A WebView supports them, but you have to turn them on. I use the following code which turns on every features which are available. This is necessary because …
android – How does Dolphin web browser get notified when it's being uninstalled?-ThrowExceptions
Exception or error: Background It might be useful for apps to allow to ask the user to answer why it was decided to uninstall them. The problem It seems that the Dolphin web browser app (and “everything me launcher“) somehow managed to bypass it, and now it shows a webpage (on the default web browser) …
android – How to open app from a link without asking user to decide between browser or app, just open my app immediately-ThrowExceptions
Exception or error: I have this intent-filter that I want that every time user clicks a link to eeexample.com to open my app: <intent-filter> <data android:scheme=”http” /> <data android:scheme=”http” android:host=”eeexample.com”/> <action android:name=”android.intent.action.VIEW” /> <category android:name=”android.intent.category.DEFAULT” /> <category android:name=”android.intent.category.BROWSABLE” /> </intent-filter> When user clicks eeexample.com on gmail app for example: Which then opens a dialog which …
android – Why is PhoneGap slower than Browser?-ThrowExceptions
Exception or error: I’m running the same exact web app on Android under PhoneGap and under the built in Browser. The app runs fine on the built-in browser but is unbelievably slow under PhoneGap. Even basic scrolling on the page stutters under PhoneGap. Is there anything, in general, that I might be doing wrong? I …
javascript – Playing html5 audio in android browser-ThrowExceptions
Exception or error: I have a javascript that plays audio in the browser, using the html5 <audio> tag. It works fine in the iPhone browser, but not in Android. (Testing using a htc desire with android 2.1.) Anyone know why? My code: function playHTML5(sound, soundcv){ // sound = url to m4a audio file // soundcv …
How can I get the cordova InAppBrowser to provide a way for the user to close the browser when using an Android device?-ThrowExceptions
Exception or error: I’m using the cordova InAppBrowser to display content from an external site in my app. When I open the browser on an iPhone, there are some buttons at the bottom of the InAppBrowser for closing it or navigating back and forth. The InAppBrowser on an Android device has no such buttons and …