General :: Scroll Lag On Browsers In Android?

Aug 11, 2013

I just got a new Samsung Galaxy S III and am on CM10. But I see that there is quite a bit of lag when scrolling webpages on Chrome. Interestingly, the stock browser is ultra smooth. Is this a problem with the ROM or is there something deeper here?

General :: Scroll lag on browsers in Android?


Android :: Comparing Browsers / Pros _ Cons Of Different Browsers

Mar 22, 2010

I've seen plenty of discussion here about different browser apps, but I have yet to see one listing the pros and cons of the different most popular browsers available for android. The main browsers I've been able to identify are the following: If there are any others worth mentioning, please add them to the list. I would love to hear your input regarding the pros and cons of each one.

View 19 Replies View Related

General :: Can Install Old Android Browsers

May 7, 2012

Is that possible to install an old Android browser apk in a newer version?

I have a Galaxy SII running ICS but I wanted to test my mobile websites using Froyo or Gingerbread browsers.

View 5 Replies View Related

General :: Android Web Browsers - Cropping Profile Photo In Facebook

Jun 27, 2012

Any web browser where the resize/crop profile photo window in Desktop (full) version of facebook actually works? Seriously, I can not change my friggin fb profile pic because when it asks to drag the edges of the box to crop the photo, it wont do anything. When I touch it and try to drag, it just moves the entire screen around. It wont actually select it...kind of like you do when you click inside a Flash window. I have tried stock browser, Boat, Dolphin HD and Opera. None of them will move or resize the drag box. Im stuck without PC access and have been wanting to change my photo for months but have not been able to. I dont understand this. When I had my Touch Pro 2 with Windows Mobile and used Opera Mobile, I had absolutely no problem dragging that box around.

View 1 Replies View Related

General :: Making Online Transaction With Android Device Using Different Browsers?

Apr 1, 2012

If I wanted to make an online transaction with my Android device and I was using a browser other than stock (e.g. Overskreen), then would my card details (used to complete the transaction) be at a safety risk due to the fact that I have made the transaction in a browser which is owned by a developer and so would he have access to these details and the like? R800i

View 5 Replies View Related

General :: Getting Two Dolphin Browsers?

Jun 12, 2013

After installing Dolphin browser, I got "dolphin Browser" and "Dolphin" on my homepage, they both seem to function the same to me. Why am I getting two apps (icons) when I only downloaded one app off the play store?

View 6 Replies View Related

General :: Uploading Within Web Browsers Don't Finish?

Mar 14, 2012

I am trying to upload images with either the build in Android browser or Dolphin Browser or Firefox on imagehosters like imgur or tinypic on my Samsung Galaxy S+ with XXKQ7 stock FW, but it always hangs right from the beginning. On another forum I was told that uploading is a general issue on Android.

View 1 Replies View Related

Android :: Scroll Down - Text Area Get Focus Scroll Little Bit And Also Display Bottom Buttons

Apr 19, 2010

I have text area and and down to that "ok" and "cancel" button. when i click on text area keyboard appear and focus on the text area and buttons get hide behind the keyboard.

I want when text area get focus scroll a little bit and also display the bottom buttons while text area id selected.

View 2 Replies View Related

Android :: Why Does TextView.setText Cause Enclosing Scroll View To Scroll?

Jun 24, 2010

I've got this odd problem which is happening on 1.6, 2.2, and a MyTouch 3G Slide (which is API #7, and listed as "2.1-Update1" in the Android Device Chooser). If anyone can explain what I'm doing wrong & how to fix it (or possibly confirm that this is an Android bug)The basic idea for my app is to make a stopwatch-sort of thing, in that the user can tap a button to start a timer, then tap it again to stop (pause) the timer; further taps alternate between resuming the timer and pausing the timer.I've got a top-level ScrollView which contains a RelativelLayout, which contains a bunch of widgets. The first widget is a HUGE button (so that it's easy to press), which pushes all my other widgets below the bottom of the screen. This is intentional, as I want to rely on the ScrollView (and an on-screen reminder to the user) to make the rest of the input options available.I've got a simple state-machine type setup, where mState is the current mode (STATE_ TIMER_ NOT_ STARTED before the user presses any buttons, RUNNING after the first press, and then PAUSED after the second, back to RUNNING after the third, etc, etc).

All this works great EXCEPT that when the timer is running, and the user presses the start/stop/resume button again, the ScrollView will scroll down a ways. I am NOT issuing this command (I don't even have a reference to ScrollView object), and I'm not sure why it's doing this.

REPRO:Compile + run the below samples. When the app starts, press the 'Start Timing' button. Use your thumb (or the mouse) to touch-drag the screen upwards (so you can see the RatingBar), then drag it back downwards (so the button is again completely on-screen). Tap the button (which now reads 'PauseTiming') again, and it'll jump down a bit. It should NOT be jumping/scrolling down, since there's no statement (that I can see) that tells it to scroll down. As near as I can tell, it's the setText that causes the scrolling ( when I comment those lines out, no scrolling occurs).WHAT I'M ASKING FOR:if I'm doing something dumb & you could point out what it is, I'd really appreciate it! I wonder if 'touch mode' might have something to do with this, since it does NOT appear to happen (in the emulator) when I use the mouse's scroll wheel to move the panel upwards (i.e.,instead of the simulated finger-dragging). I can't find a whole lot on touch-mode, and nothing specific on focus/selection in touch mode within a ScrollView if you can confirm that this error occurs for you too, that would be ok, too (since misery loves company.AHEM I mean, since it might help confirm that it's not just me MyTestApp.java package bug.android.scrollview;
import android.app.Activity;
import android.os.Bundle;
import android.text.format.Time;
import android.view.Display;
import android.view.View;
import android.view.WindowManager;
import android.widget.Button;
import android.widget.TextView;
public class MyTestApp extends Activity {
public final static int STATE_TIMER_NOT_STARTED = 1;
public final static int STATE_TIMER_RUNNING = 2;
public final static int STATE_TIMER_PAUSED = 3;
private int mState;
Time t = new Time();
private Time data = new Time();
private Button btnStartStopResume;
private TextView lblSpacer;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.new_time_entry);
btnStartStopResume = (Button) findViewById(R.id.btnStartStopResume);
// Set the button's size so that the other info will also be visible
Display display = ((WindowManager) getSystemService(WINDOW_SERVICE))
.getDefaultDisplay();
// This is such a hack, but the windowScroller doesn't appear to
// have a height at this point in the lifecycle (nor in 'onResume' :( )
btnStartStopResume.setHeight(display.getHeight() - 200);
lblSpacer = (TextView) findViewById(R.id.lblSpacer);
reset();
} public void doStartStopResume(View v) {
if (mState == MyTestApp.STATE_TIMER_NOT_STARTED) {
mState = MyTestApp.STATE_TIMER_RUNNING;
data.setToNow();
} else if (mState == MyTestApp.STATE_TIMER_RUNNING) {
mState = MyTestApp.STATE_TIMER_PAUSED;
String s = getString(R.string.add_scroll_down_to_add);
lblSpacer.setText(s);
} else if (mState == MyTestApp.STATE_TIMER_PAUSED) {
mState = MyTestApp.STATE_TIMER_RUNNING;
public void doReset(View v) {
}public void doNewRunClick(View v) {
public void doAddTiming(View v) {
public void reset() {
mState = STATE_TIMER_NOT_STARTED;
new_time_entry.xml
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/windowScroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
> <RelativeLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
> <Button
android:id="@+id/btnStartStopResume"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dip"
android:text="Start Timing"
android:textSize="40dp"
android:height="290dp"
android:onClick="doStartStopResume" />
<TextView
android:id="@+id/lblSpacer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/btnStartStopResume"
android:layout_centerHorizontal="true"
android:text="@string/add_scroll_down_for_more" />
<TextView
android:id="@+id/lblTimeStartLabel"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/lblSpacer"
android:layout_alignParentLeft="true"
android:clickable="true"
android:onClick="adjustStartTime"
android:text="Start of this run:"
android:textSize="8dp" />
<TextView
android:id="@+id/lblTimeStart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblTimeStartLabel"
android:layout_alignParentLeft="true"
android:clickable="true"
android:onClick="adjustStartTime"
android:text="--:--:-- --"
android:textColor="#FFFFFF"
android:textSize="26dp" />
<TextView
android:id="@+id/lblElapsedLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblSpacer"
android:layout_alignRight="@id/lblSpacer"
android:layout_marginRight="5dp"
android:text="Elapsed Time:"
android:textSize="8dp" />
<TextView
android:id="@+id/lblTimeElapsed"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblElapsedLabel"
android:layout_alignRight="@id/lblSpacer"
android:layout_marginRight="5dp"
android:textColor="#99ff66"
android:text="-- m -- sec"
android:textSize="26dp"
android:layout_marginBottom="10dip"/>
<CheckBox
android:id="@+id/chkNewRun"
android:onClick="doNewRunClick"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/lblTimeElapsed"
android:text="This is a new run of timings"
android:layout_marginBottom="10dip" />

<TextView
android:id="@+id/lblIntensity"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Intensity (1 = none 5 = max)"
android:layout_below="@id/chkNewRun" />
<RatingBar
android:id="@+id/rbIntensity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/lblIntensity"
android:numStars="5"
android:rating="2"
android:layout_marginBottom="5dip" />

<TextView
android:id="@+id/lblNotes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Notes:"
android:layout_below="@id/rbIntensity" />
<EditText
android:id="@+id/txtNotes"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/editbox_background"
android:layout_below="@id/lblNotes"
android:layout_marginBottom="10dip" />
<Button
android:id="@+id/btnReset"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txtNotes"
android:layout_alignParentLeft="true"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:text="Reset"
android:onClick="doReset" />
<Button
android:id="@+id/btnOk"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/txtNotes"
android:layout_toRightOf="@id/btnReset"
android:layout_alignParentRight="true"
android:layout_marginLeft="10dip"
android:layout_marginRight="10dip"
android:text="Add Timing To List"
android:onClick="doAddTiming" />
</RelativeLayout>
</ScrollView>
strings.xml
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="app_name">Timer</string>
<string name="dlg_edit_timing_title">Edit A Timing</string>
<string name="add_scroll_down_for_more">< Scroll down for more options! ></string>
<string name="add_scroll_down_to_add">< Scroll down to save this timing! ></string>
<string name="start_timing">Start Timing
</string>
<string name="stop_timing">Pause Timing
</string>
<string name="resume_timing">Resume Timing
</string>
</resources>
AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="bug.android.scrollview"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".MyTestApp"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="5" />
</manifest>
UPDATE 1: Adding if( btnStartStopResume.isInTouchMode() )
Toast.makeText(this, "TOUCH MODE", 2000);
elseToast.makeText(this, "NOT touch mode", 2000);
then setting breakpoints in the debugger confirms that the button is always in touch mode (regardless of whether I finger-drag the panel up/down, or mouse-wheel it up/down). So it's a combination of being in touch-mode AND finger-dragging the panel after the 2nd button-press (i.e, when the app is in 'stopped/paused timing' mode) that's causing the odd extra-timing in subsequent pauses.
UPDATE 2:
I just noticed that it's scrolling down to the EditText, and no further. It looks like when you move the panel down the EditText gets the selection, and after the click event the ScrollView scrolls back to the thing that has the selection. Seems to explain why the mouse-wheel approach doesn't have this problem (it moves the selection/focus back up to the button).

View 1 Replies View Related

Android :: Scroll To Last Line Of Table Layout Within Scroll View

Jun 21, 2010

I want to have a dynamic table, with rows added over time as a result of user interaction, using a TableLayout inside a ScrollView. This works fine, but when I want to scroll to the end of the table using fullScroll(), it always leaves out the last line; that is, it scrolls so that the one before the last one is visible. The last line is visible when scrolling manually, and the scrollbar is correct too.I'm of course open to suggestions as to how to make a better layout out of this; but I'm specifically interested in understanding why fullScroll() behaves that way. Should I give it a different parameter, or use something else altogether? Or does it do that because the newly added line isn't yet visible somehow? (if so, how can I solve that?) Or did I miss some other obvious thing?The following code replicates the problem: TestActivity.java:
package com.example.android.tests;
import java.util.Random;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ScrollView;
import android.widget.TableLayout;
import android.widget.TableRow;
import android.widget.TextView;
public class TestActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
((Button) findViewById(R.id.AddRow)).setOnClickListener(new View.OnClickListener() { public void onClick(View v) {
Random rnd = new Random();
TableRow nr = new TableRow(v.getContext());
for (int c=0; c<3; c++) {
TextView nv = new TextView(v.getContext());
nv.setText(Integer.toString(rnd.nextInt(20)-10));
nr.addView(nv);
}((TableLayout) findViewById(R.id.Table)).addView(nr);
// Scrolls to line before last - why?
((ScrollView) findViewById(R.id.TableScroller)).fullScroll(View.FOCUS_DOWN);
}main.xml:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:text="Add Row"
android:id="@+id/AddRow"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
<ScrollView
android:id="@+id/TableScroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@id/AddRow"
android:layout_alignParentTop="true" >
<TableLayout
android:id="@+id/Table"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="0,1,2" />
</ScrollView>
</RelativeLayout>
Edit: for reference, I implemented Romain Guy's solution as follows:In TestActivity.java, replace:
// Scrolls to line before last - why?
((ScrollView) findViewById(R.id.TableScroller)).fullScroll(View.FOCUS_DOWN);
// Enqueue the scrolling to happen after the new row has been layout
((ScrollView) findViewById(R.id.TableScroller)).post(new Runnable() {
public void run() {
((ScrollView) findViewById(R.id.TableScroller)).fullScroll(View.FOCUS_DOWN);

View 1 Replies View Related

General :: Any Browsers Other Than Stock JB That Don't Constantly Reload

May 5, 2013

Are there any browsers other than the stock JB browser that don't constantly reload or refresh the pages when you multitask? I imagine I want one that stays persistent in memory. I've had problems with Boat Browser, and Firefox has issues with zooming that drive me nuts. Opera hasn't updated their UK for high PPI devices, so the buttons are too small. I also have this aversion against cloud based browsers.

View 1 Replies View Related

General :: Dynamic Text Reflow In Browsers

May 19, 2013

I've been testing a whole mess of different browsers, and so far, I've only found three that have dynamic text reflow (by which I mean the text resizes to whatever zoom level you choose): Opera Mobile, Opera Mini and UC Browser, and UC Browser's text reflow is somewhat glitchy and unreliable. Not even Opera Beta has the text reflow.

I'm also aware some browsers have the double-tap after zoom to reflow the text, but I find that generally rather unreliable, too; it sometimes zooms out instead of reflowing.

Why is this? Is there a technical limitation with doing this in Webkit, that Presto made easy or something? Am I wasting my time trying to hunt down a new browser with dynamic text reflow? (Opera Mobile is starting to drag a bit.)

View 4 Replies View Related

General :: How To Block Ads On Browsers Without Root - R800i

May 28, 2012

Is there a way to block ads on Android browsers without root? R800i

View 6 Replies View Related

General :: Sync Bookmarks Across Platforms And Browsers

Apr 5, 2012

I'm currently using Firefox 11 as my computer browser, MIUI (GB version) Stock browser on my EVO 3D phone, and ICS Browser+ on my Transformer Prime tablet, and i've come across a problem.

I can't seem to sync my bookmarks properly.

I've been able to easily sync calendar, contacts, etc with my gmail.com account and such, but I absolutely refuse to use Chrome as my browser just for the sync ability.

I'd like to be able to sync between all 3 devices if possible (If not possible, at least sync between Firefox 11 on my computer and ICS Browser+ on my tablet?)

View 1 Replies View Related

Android :: Scroll View With Horizontal Scroll Support?

Mar 12, 2009

It looks like the standard ScrollView does not support horizontal scroll. Has anyone implement a ScrollView with horizontal scroll support? It would be appreciated if you can share it.

View 6 Replies View Related

Android :: Synchronise Scroll View Scroll Positions

Oct 16, 2010

I have 2 ScrollViews in my android layout. How can I synchronise their scroll positions?

View 1 Replies View Related

General :: All Browsers Crash Constantly (except Chrome) - Nexus 7

Mar 27, 2013

To put it short: Dolphin Browser started force closing randomly a few days ago. I couldn't get rid of the problem and tested pretty much every browser available for the Android platform. Opera, Firefox, Boat, xScope, Maxthon and so on, they ALL crash. I don't really like Google Chrome, due to its lack of options (no fullscreen etc.)....

Here is what I did:

- uninstalled and reinstalled Dolphin
- rebooted the tablet
- deleted the app cache (also via "wipe cache partition")
- disabled Google Admob
- executed a full factory reset, installed Dolphin first, still crashing

The problem itself is well documented and affects many OS versions, even more devices and every browser. The only workaround is to disable JavaScript, which of course renders many web pages unusable.

Coming from a Blackberry Playbook with its own fair share of browser related crashes, I'm now utterly frustrated with the situation. The first three weeks with my new Nexus 7 felt absolutely perfect.

View 6 Replies View Related

General :: Nexus 7 Browsers Do Not Display Entire Page

Oct 10, 2013

Neither Firefox or Chrome will display the full page on an Avon site. The page will display the information which advises me that invoices are listed below and can be downloaded in pdf format. Unfortunately there is no list. All displays as it should on my laptop and desktop.

View 3 Replies View Related

General :: Browsers Incorrectly Loading Webpages Very Small?

Nov 20, 2012

I'm had a really strange bug/problem in Android for months and I still haven't been able to find the roou cause of it in order to fix it. For some reason the browser is not rendering correctly webpages - the fonts are extremely small and the page is off centered. This is happening only while on 3G/Edge connection - if using WiFi this issue doesn't occur.

This happens with every single browser: Stock Browser, Firefox, Chrome, Dolphin, etc.

I thought this was a ROM specific issue, but I have tried flashing more than 3 ROMs now (every time I've flashed i've done a wipe cache, wipe dalvik cache and wipe data/factory reset) with no luck. I also tried formatting the internal SD.

View 2 Replies View Related

General :: Samsung Galaxy Pocket (4.0.4) - Block Access To Other Browsers

Aug 1, 2013

Is there a way to block access to browsers? I would like the user of a Samsung galaxy Pocket (version 4.0.4) to be able to access one browser only.

The browser in use has a blacklist filter which block websites, but indeed you can easily bypass it by installing a new browser.

My past attempts: I have searched for a long time but could not find anything that worked. The browsers I have found which can block other browsers are not compatible with this device.

I have also searched for alternative ways of blocking websites though a blacklist but all of those solutions require rooting the device, which I do not have enough technical confidence to do.

Blocking Play store is not either an option since you would be able to install new browsers in other ways.

View 3 Replies View Related

General :: Find List Of Browsers That Support Night Mode?

Nov 19, 2013

I am using HTC Desire S, upgraded to RUU version Ice Cream Sandwich 4.0.4. This RUU version came straight from HTCDev. This RUU version doesn't support inverted mode.

Because of this difficulty, I am unable to search and find web browsers that support inverted mode. Google search will always come up with tutorials on how to turn on inverted mode in the ICS browser, which this RUU version doesn't support.

Where can I find a list of browsers that support Inverted Mode/Night Mode?I do know Dolphin Browser dropped support for Night Mode.

View 1 Replies View Related

Android :: Scroll View Scroll Time Out ?

Nov 20, 2009

is there no way to change the timeout to scroll in ScrollView? In the source, it's set to: static final int ANIMATED_SCROLL_GAP = 250; so any drags will be blocked for 250ms. This has the appearance of the ScrollView being stuck for a bit before it moves. This makes small scroll gestures difficult to work with. There's no way around this?

View 9 Replies View Related

Android :: Reset Scroll In Scroll View

Sep 17, 2010

I have a ScrollView (and a LinearLayout within it) set as main content. When the user scrolls the view further down, and then if I replace it's child (LinearLayout) with another LinearLayout, the view remains in the scrolled positioned.How do I reset the ScrollView back to coordinate 0?

View 1 Replies View Related

General :: Audio-streaming From Browsers Stops When Screen Shuts / Locks?

Oct 26, 2013

(Galaxy note 2, Sungsonic ROM)

When streaming from Grooveshark in a web-browser, the audio-streaming stops (after finishing current song) when the screen shuts/locks. I have tried several browsers with the same result.

Audio-streaming from audio-specific apps (i.e. TuneIn) works just fine.

Someone mentioned somewhere that it has to do with the browsers not being set to over-ride the screen-lock.

View 1 Replies View Related

HTC Droid Eris :: Scroll-ball Doesn't Scroll Left Anymore

Feb 11, 2010

So everything is perfect about my Eris except that the scroll-ball doesn't scroll left anymore. This isn't the first time the problem came up. My last Eris had the same problem. It scrolls in every direction except which is kinda annoying as I use it alot more than I thought I would. Should I take it up with Verizon? It isn't a life or death situation but it makes editing sentences in texts a pain.

View 2 Replies View Related

General :: Scroll Position In Android Market?

Aug 11, 2012

Whenever you search for an app in the Android Market, click on one and realize its not the one you wanted, you click back but then the scroll position gets reset and you're at the top of the search results. This is even more particularly annoying whenever you look through your previously installed apps on the Android Market and try to re-install some. Its not fun having to scroll 5 pages each time.

View 2 Replies View Related

Android :: How To Switch Windows Like Browsers?

Jun 15, 2009

I want to do the function of switch windows, like the browsers do now, eg: when i open a web1 and web2,i can use the "Window" function in the "menu" button.

View 5 Replies View Related

Android :: Does Hdmi Out / Tv Out Work With Any Of Internet Browsers?

Aug 6, 2010

Ok so i have been searching the forums for an answer to my questions but cannot seem to find anything definitive. Does hdmi out/tv out work with any of the Internet browsers? Do any of the emulators support hdmi out/tv out? Is there any android device the supports tv out for its home screen and all apps? If not when will we get any of this?

View 3 Replies View Related

Android :: Web Browsers With User Agent Switching?

Sep 16, 2010

I am trying to see if there is more than the normal popular web browsers out there that support user agent switching. I am looking for those that support either custom or iOS settings.

Before I get attacked for wanting to emulate a iOS product I will explain.

The company I work for uses a 3rd party vendor for eBooks for our students we work with. They use a proprietary software that only worked on Mac or PC's to download the book as well as a online website.

Yesterday the vendor launched an app for the iOS that allows the users to download the books to their devices. They also altered the online version of the site to work perfectly with iOS devices.

They refuse to take into consideration Android devices and the website will not display the eBooks properly on any android device.

However, when playing around with Dolphin and xScope the User Agent settings have iPhone/iPad in them. After enabling them, the site thinks its a iOS device and the content works beautifully with it.

What I am trying to do is catalog the other browsers out there that support user agent switching to try to catalog the ones we can suggest to students to use.

View 5 Replies View Related

Android : No Java / Javascript On Droid Browsers / How To Get?

Jan 31, 2010

I've been following a discussion on the apparent lack of JavaScript and Java on Android browsers. One of my hot button applications requires either JavaScript or at least the ability to run a .jar file in order to save data. No one in the other discussion has been able to find a Android browser capable of supporting this application (TiddlyWiki)..

View 12 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved