General :: Prevent Browser From Saving Tabs?

Mar 15, 2012

How can I prevent the browser from saving the tabs I last had open? It's annoying to open the browser and have stuff from a week ago still there

General :: prevent browser from saving tabs?


Android :: Prevent Saving Browser Pages In Activity Stack History?

Oct 27, 2010

1. User click one button on Activity#1 to start Activity#2.

2. One button on Activity#2 start system default browser(Intent.ACTION_VIEW) to get Twitter authorized.

3. After user allow, Twitter redirect user to Activity#2(Custom intent- filter+data) and it save the tokens.

Now, if I press back key, the app back to browser, how to prevent this and return to Activity#1? Try several Intent.Flag before start browser with no luck.

View 4 Replies View Related

General :: Prevent Chrome Mobile From Opening Tabs On Startup?

Sep 20, 2012

Love chrome mobile, but it grinds to a crawl due to opening all recent tabs. How do I set it to just go straight to bookmarks on startup?

View 1 Replies View Related

Android :: Scrollable Tabs - Dolphin Browser When Using Multiple Tabs

Jun 19, 2010

I'm currently working on my first android application. I am using a tabbed layout for my application. I followed the tutorial for this on the dev guide and ran into a problem. The tutorial only used three tabs, but I have a need for more. As such, the tabs resize and bunch up. I was hoping someone could tell me how I can make them scroll, like in dolphin browser when using multiple tabs.

View 1 Replies View Related

General :: Browser For Android Phones And Tabs?

Oct 8, 2013

Which web browser would you recommend for an android mobile phone or tab etc. By the way, I have a samsung galaxy lite and want to install a web browser. I download Mozilla but it is very slow.

View 12 Replies View Related

Android :: Prevent Activity From Saving State When User Selects Back Button

May 2, 2010

I have an Activity with a list that is bound to a ListAdapter reading data into a ArrayList from a database. All is well when the data is first loaded. While the Activity is open and the list is being displayed it is possible and likely that the data in the database will be updated by a service but the list does not reflect the changes because the ArrayList does not know about the changes. If the Activity is no longer in the foreground as would be the case if the user goes to the home screen and then is brought back to the foreground I would like for the Activity to not display what it did prior but rather reload the data using the ListAdapter the view is bound to. I think something needs to call finish() but I am not sure what.

This is what I have in the Activity.

CODE:.......................

View 1 Replies View Related

HTC EVO 4G :: Dolphin Browser - Increase Max # Of Tabs?

Sep 16, 2010

Does anyone know if there is a way to increase the maximum number of tabs you can have open at once in Dolphin Browser, or possible another tabbed browser with a higher limit?

My EVO runs great with tons of free RAM when I have 8 tabs open in Dolphin Browser. I would like to have the ability to open several more.

View 2 Replies View Related

Android :: Dolphin Browser / How To Disable Tabs That Come Out?

Sep 19, 2010

First off let me say that of all browsers I've tried so far. This is by far my favorite. Except one really annoying thing which keeps me from using it. There are tabs that come out if you sidescroll preventing me from sidescrolling the page also preventing me from selecting text. Anyone know how to disable or work around this?

View 5 Replies View Related

KitKat 4.4 :: (Chrome Browser) Make Tabs Continue Loading When Not Active Window?

Apr 11, 2014

I'd like to make my browser continue loading homepages, even when I'm not starring at the respective tab. Hardware-wise this should be entirely possible with a Quad-Core CPU.

Right now, there is no root or custom ROM on my device which I'm willing to change in favor of the above improvement.

edit: 4.4.2 OS installed

View 14 Replies View Related

Android :: Browser For Reading / Saving Files

Sep 29, 2010

Does anyone know any good tutorials for this please? Or could anyone run me through some basic code for making this?

View 1 Replies View Related

Android :: Prevent Duplicate Browser / Activity Launching

Jun 29, 2010

I would like to know if there is a way of preventing a duplicate launch of browser/activity, while the user is already focused on it.mybe there is a way to detect before if the user's current screen is already focused on the same activity/browser i intent to launch?

View 2 Replies View Related

Android :: How To Prevent Browser Toolbar Auto Hide?

Jul 23, 2010

On the Droid Incredible, how do I prevent the toolbar from automatically hiding when opening the Internet app?

View 1 Replies View Related

Motorola Droid 2 :: Saving Web Pages From Google Browser

Nov 29, 2010

Is there a way to save web pages for browsing later especially when there is no internet connection?

View 2 Replies View Related

Samsung Moment :: Error Saving - Deleting Files And Browser Downloads

Sep 4, 2010

Some time ago...I estimate a week at most, I received an error when simply saving a file from my Browser, stating there was not enough space to do so. Knowing my phone had mre than adequate space, I presumed it was just an error with my browser.

Trying again with a different internet browser, I was met again with the same dilema. To make matters worse, I cannot permanently delete picture files from the default viewer on my phone. Queerily, I can delete them, only to have the pictures return hours later. To make my situation more unusual; Upon viewing the SD card mounted on my laptop, I can move, add & delete any form of files with ease. Even saving/deleting other files using different apps (Videobox, for example) gives me no hassle whatsoever.

One solution I'm willing, but at the same time reluctant to try is to reset my phone entirely to it's factory default setting (prior to backing up all of my SD card's data, of course)

View 1 Replies View Related

Android :: TABS In 2.0 Vs 1.5 - Rounded Corners TABS

Feb 27, 2010

I simply use the tabwidget :

CODE:..........

Why are my tabs so uggly in 2.0 (no more rounded corners as in 1.5/1.6) ?

ugly tabs here

=>

This was better

What should I do now to show "rounded corners" TABS to Nexus One (for exemple) users ;-) ?

Is it because of the following manifest lines :

CODE:................

I have to keep android:anyDensity="true" otherwise I've got a problem with re-sizing of the menus described here

As a separate question, my users can change the Locale within my app itself, I then "redraw" the menus using onPrepareOptionsMenu (Menu menu) to refresh the strings within the menu with the new language choosen by the user. Is there an equivalent for TABS (I have local strings within the Title of the TABS) or do I have to delete all the tabs and re-create them from scratch ?

View 2 Replies View Related

Android :: Tabs - MapView - Activities Within Tabs

Oct 19, 2009

We're in the process of writing an app that has 4 tabs: Map, People, Places, Events. The People, Places, and Events in the App show up as Icons on the map. By default the People, Places, and Events tabs each show a listview, custom rendered, displaying all the People, Places, and Events respectively.

Now, right now each of the tabs has as its content an Intent set to launch the corresponding activity. For instance, there is a MapTabActivity that extends MapActivity, a ShowPeopleListActivity that shows the people, and so on and so forth.

I see a lot of StackOverflow questions/answers saying that due to various limitations in the way the TabHost is setup, it's best NOT to use activities as the content of tabs. For instance, it's impossible to launch a new activity and have it take the place of the existing activity within a tab, whereas it's possible to switch out a View with a different view.

Now, I'm at a crossroads. We've (for better or worse) devoted a fair amount of time trying to get this app to work the way it's currently structured, with the Activities as the content of the tabs. When an icon corresponding to a Person, Place, or Event is clicked, it fires off a VIEW Intent on a URI corresponding to that object; this is picked up by an Activity that then shows the object. The same mechanism is at work both in the Map and in the individual lists. We really like the loose coupling this provides us; we just give a VIEW command and the URI to the person/place/event and it automatically brings us to the right activity. Granted, the activity that's launched covers up the tab view rather than appearing inside of that, but we were willing to live with this.

Here's an issue though: from the Show activity, we want to be able to go back to the map, centered at that person, place, or event. We can launch a new activity to show the map again, but now we have the map activity as the content of the tab, plus the show activity, plus the new map activity in the activity stack; given how resource intensive the map activity is, I'm guessing this is not the ideal way to go.

I guess my question is, is there a GOOD tutorial somewhere showing exactly how to do complex tasks with a TabHost? I've seen HelloTabWidget; I'm looking for something much more sophisticated than this. I'm worried that if we switch to the View based way of doing things, we'll have to do a LOT of housekeeping to intercept all the back events, try to switch out the views, etc., etc., as well as strongly coupling our program in a way we don't want.

View 5 Replies View Related

Android :: Tabs Layout - Tab Activity With 4 Tabs

Nov 11, 2010

I have an Tab Activity with 4 tabs. Each of tab is showing me the list view. Suppose i m on 4th tab and dragged the list view to the last position and after that i click on 3rd tab and again when i go to 4th tab it is not refreshing and showing me the last visible screen. Actually i want to show the list view again from 1st element. is tabs refresh automatically or we need to do it programmatic?

View 1 Replies View Related

Android :: Opening Browser Activity / Prevent It From Being In Activity History

Aug 12, 2010

I'm working on an app that launches the browser activity to perform a Twitter OAuth authorization. This process uses a callback url which will re-launch the activity that started the browser activity in the first place.My problem is that the browser pages remain in the history stack and when the user then clicks back from the preferences activity that launched the browser in the first place, they don't go back to the app's main activity, but instead are brought back to the browser. I've tried adding flags to the launching intent to prevent history and reset on clear, but it doesn't seem to work when running on my phone, only on the emulators.

View 1 Replies View Related

KitKat 4.4 :: Change Between Tabs By Swiping Left To Right To Change Tabs

Jan 10, 2014

i have a problem with this new kitkat os. Before kitkat i could change between tabs by swiping left to right ir right to left to change tabs.Now it doesn't change.

View 1 Replies View Related

General :: Syncing Classroom Set Of Galaxy Tabs To One Computer?

Feb 6, 2013

my classroom has recently required a classroom set of Galaxy Tabs and I'd like to know how to sync them all to one computer. Syncing them one at a time seems like laborious task.

View 3 Replies View Related

General :: Chrome - How To Disable Swipe Between Tabs Gesture

Aug 19, 2012

As stated in thread title: Is there a way to disable the swipe between tabs gesture for Chrome on Android?

The gesture interferes with my ability to use certain websites that I now rely on that currently do not have an app for Android. I've tried searching for an answer to this and I've just been flooded sifting through irrelevant results for Mac, custom ROMs, etc. So far, the only solution to this has been to use another browser, but I enjoy the seamlessness of Chrome's remote tabs feature. I would like to know if there is an advanced settings section similar to "chrome://flags" for the desktop or a workaround that involves root.

View 9 Replies View Related

General :: Restore ICS Browser Bookmarks / Saved Pages To Jelly Bean Browser?

Jul 4, 2012

I used Titanium Backup to backup my apps with data and system files. How do I restore those bookmarks and saved pages?

View 2 Replies View Related

General :: Prevent Reinstall Of App?

Apr 5, 2012

Is it possible to prevent a user from uninstalling an app and then re-installing it?

View 2 Replies View Related

General :: How To Prevent GPS From Getting Disabled

Oct 2, 2012

There are a no. of apps out there for finding lost devices, but they would all prove useless if the thief disables the GPS.

So, is there any way to prevent GPS from being disabled?

View 5 Replies View Related

General :: Droid 3 - Saving SMS To PC

Apr 22, 2012

I have a Droid 3 and I'm attempting to backup my texts and save them to my pc so I can print them out if I need.I have downloaded SMS Backup and Restore and PhoneLeash. From what I've gathered, Phoneleash only emails the texts that have been sent/received after the app has been installed. I do like the organization of the texts, though. For Backup, I have gotten my texts backed up and saved to my SD card. When plugged into my pc, I've been able to open it up in XML format, but the texts are so hard to read, due to all the coding. Also, it doesn't organize the messages very well. It put all the texts I've sent together and all the other person's texts together. It would take a long time to get them organized correctly. So my question is, is there any app the works like SMS Backup, but organizes like PhoneLeash?how to make Backup organize the texts correctly?

View 1 Replies View Related

General :: Battery Saving App

Apr 26, 2014

I am planning on buying a new Android phone in place of my old ageing Samsung Galaxy S3 LTE. I'm choosing between the Nexus 5, HTC One (M7) and the Galaxy S4. One thing that is common to these phones are they both have Snapdragon processors.

My question is:

1. Is it wise or even practical to even install a battery-saving app for these phones? (as I heard such apps does work but also is a drain to the batteries themselves and resources/RAM)

2. What battery-saving app recommended? (I know I can easily search in Google or the Play store but there are just hundreds of them. I want to trickle it down to the "best of the best" or the "top one" out there currently?

View 1 Replies View Related

General :: Prevent Movies Being Deleted?

Jan 1, 2012

My 3 y/o daughter loves watching cartoons (Barbie) on my Galaxy Tab and Galaxy Note. However she often accidentally deletes the movies (she's only 3) while changing cartoons. I keep the movies on my micro SD card but unlike the SD card the micro doesn't have a lock to prevent deletion.

Is there a way or app that can prevent her from accidentally deleting the cartoons?

View 1 Replies View Related

General :: Prevent Connecting Phone To PC

Nov 24, 2013

Is there any way or application that when someone connect my phone to pc , it showes drivers and files but can not copy files from pc to android or android to pc.

View 1 Replies View Related

General :: Prevent App From Running In Background?

Jan 25, 2012

What exactly can keep an app running in the background, regardless of what efforts your take to disable it?

If I don't use an app much and don't want it running, I normally freeze the app. If it is an app I tend to use a bit more frequently, I take other measures such as an app manager that allows me to be extremely precise as to how and when it should run such as on startup, battery level, configuration change, application change, etc. I really don't have the time to do this for every application.

With that said, I'm wondering what other methods, other than freezing and the other mentioned above, I can take to prevent an app from running in the background?

I will give you a perfect example...

There are some third-party apps I have downloaded that I know I will use occasionally. One example is CamScanner. For the life of me, I can't get this app to stop running in the background without extensive efforts mentioned above. No matter what I do, it just pops up again in running applications.

How can I ensure the app will not run in background while not resorting to freezing the app, which will prevent me from quickly accessing it when needed?

View 6 Replies View Related

General :: How To Prevent USSD Message From Being Sent

Jun 8, 2014

I've just bought an Android phone (JIAYU F1 - link here), and it's really great.

Thing is, I have special SIM from my carrier, that allows me to use only certain models of phones, and not others.
I moved the SIM from the old phone to the new one - and for the first 10 second - it was great.

I could dial numbers, and recive call from other phones. BUT - after like 10 sec's or so - I saw the words "USSD sent" on the screen, some blank message appears, and since I clicked OK (no other choice...) - I couldn't make and receive any calls.

My guess is that this "USSD message" is responsible for the whole mess, reporting to my carrier which phone model using the SIM right now. This is why I want to find a way to prevent it to be sent to my carrier.

View 1 Replies View Related







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