Questions tagged [android-browser]

The web browser used on older (pre 4.4) and non-Google experience versions of Android, based on the open-source WebKit layout engine, coupled with Chrome's V8 JavaScript engine

The web browser available in Android is based on the open-source WebKit layout engine, coupled with Chrome's V8 JavaScript engine. The browser scores 100/100 on the Acid3 test on Android 4.0.

528 questions
3
votes
3 answers

How to test android based mobile pages on web browsers with the help of plugins?

I want to test android mobile based pages on browsers like chrome or mozilla. Is there any plugins available so I can directly test them on these browsers without running them on device or emulator?
Gendaful
  • 5,522
  • 11
  • 57
  • 76
3
votes
2 answers

Android anchor tags not working

Edit: Tested on Droid X running Android version 2.2.1 I'm developing a webpage designed to run on mobile devices, specifically Android and iOS. Everything seems to be working on iOS, but I'm experiencing weird behavior on Android. Anchor tags seem…
Jason
  • 51
  • 7
3
votes
1 answer

How to view a webpage stored in sdcard in Android browser

I am trying to view a webpage stored in sdcard directly in the browser in an emulator. I know I can copy the webpage in the assets folder and use a webview to load it. But is there a way this be done directly? (equivalent of typing…
OceanBlue
  • 9,142
  • 21
  • 62
  • 84
3
votes
0 answers

Getting SSL error while opening untrusted SSL link in XWalkView (CrossWalk)

I'm using crosswalk as an alternative to webview in android for an application that has builtin mini browser and require lots of web navigation. Problem: Now whenever I try to navigate to a SSL based a dialog pops up saying SSL Certificate Error…
3
votes
0 answers

Android wifi login via hotspot landing page, using Facebook API, browser not fully communicating with facebook

We have created a wifi hotspot, using a Mikrotik Routerboard. Everything works fine from laptops, i.e. When the user opens a browser, they get redirected to the hotspot landing page we have created. There they can login with facebook. When we try to…
3
votes
1 answer

MediaBrowserServiceCompat methods

How do I access the public methods that I have defined (not the overridden ones) in the MediaBrowserServiceCompat from an activity? Earlier I had used just the service, so I could bind it with the activity class and then access the methods…
3
votes
5 answers

Can't call functions from first included javascript file from the second included js file

I'm making an Android application with Apache Cordova. Everything works on Android 6.0, which is using Chrome by default, the problem is on Android 4.2.2 (Samsung Galaxy S4 mini) which is using the default Android browser. If i'm not mistaken, then…
tedi
  • 6,350
  • 5
  • 52
  • 67
3
votes
1 answer

Starting Android Browsers' Private Activities using Intent URLs

first of all i have to admit that im a newbie in Android, but we know that in android we can't start private activities of applications by another application . unless they're set to android:exported=true in their intent-filter or they are made for…
3
votes
2 answers

CSS: top percentage doesn't work on all browsers

I'm aiming to position an image to the middle inside a div. It works great, but for some reason, top doesn't have any effect on the Android browser. Very likely, I have my divs set incorrectly where the img one cannot determine it's container…
Henrik Petterson
  • 6,862
  • 20
  • 71
  • 155
3
votes
0 answers

Getting ERR_UNKNOWN_URL_SCHEME error when calling android app from stock browser

I'm writting some Js to call my app from browser: var android_app_link = "myapp://something.com"; $("a[id^=this_is_id]").click(function(){ setTimeout(function() { if (!document.webkitHidden || !document.hidden) { …
quangteo.media
  • 113
  • 1
  • 8
3
votes
1 answer

Clear chrome browser history programmatically

I have tried using the following code but it doesn't work with chrome, only the old browser. Browser.clearHistory(getContentResolver());
SPatrickApps
  • 538
  • 8
  • 21
3
votes
1 answer

Android browser history URI?

I need to save the last visited webpage by user. Evething works fine with my Galaxy S4 (5.0.1) with Chrome Browser. However, on some phones I got nothing or very mixed results. From what I gathered, the biggest problem is with Browser URI itself.…
a_dzik
  • 927
  • 2
  • 11
  • 24
3
votes
1 answer

How to stop CSS3 animation in Android Browser?

I have a div which spins:
.medium { position: absolute; width: 100px; height: 100px; } .animated { animation: spin 5s linear infinite; } @keyframes spin { 100% { -webkit-transform: rotate(360deg);…
dimaninc
  • 765
  • 5
  • 16
3
votes
2 answers

SVG image showing dark stroke on Chrome

I'm having problem showing SVG logo image for my website project: I can see slight thin dark line around the edge(border) of the vector object. It seems to be prevalent around curves. There's no border, at least when it's created on Illustrator, nor…
Iorippi
  • 155
  • 1
  • 12
3
votes
3 answers

Javascript ended event when video playback ends on android

I have been trying to create a web page that will redirect the user after he has watched a video (or if he aborted the playback). I've got this working on the iphone but can't really figure out how it works on the android. On the Iphone i have found…
Tjofras
  • 2,116
  • 12
  • 13