Autonomy of the batteries? Here is the solution!

Most of the battery power goes to your connection 3G / 4G, GPS, WIFI and Bluetooth. You can turn off GPS, WIFI and Bluetooth, but the only way to disable the phone data is airplane mode and that will kill all data set.

The solution? Juice Defender. You can find it on the market. It controls your data connection stopping when the screen turned off, allowing every 15 minutes to let email and other background internet access applications, then it turns off it back. When you turn on the screen, it allows the data until you close the screen to reverse. The PLUS version does the same thing with your WIFI connection as well. A value of $2!

The results? Today my RAZR with moderate consumption is still 60% battery after 12 hours! Without this app I would be ready for a charge at this stage. Sure I could get 24 hours free of charge now.

Setup is a breeze. Install the application, choose balanced and active. That's all! Another thing, I changed a uncheck DATA under the ABOUT screen, turn off the WIFI. If you don't do this then you might find that MMS messages do not download correctly.

Sit and enjoy double the battery life!

Mike

PS no, I don't work for this company. It's just a great farm solution!


Tags: Motorola Phones

Similar Questions

  • Locale in the Cascades Momentics model code is broken. Here is the solution...

    The Momentics application, it is easy to start new projects by basing your new application on a predefined model. The problem is that the regional settings, change the code in the application model Cascades do not work properly and developers who don't understand this will serve strings bad language to their users. The locale of the model code looks like this...

    void ApplicationUI::onSystemLanguageChanged() {    QCoreApplication::instance()->removeTranslator( this->_translator );
    
        // ---Initiate, load and install the application translation files.
        QString locale_string = QLocale().name();
        QString file_name = QString( "AppName_%1" ).arg( locale_string );
        if ( this->_translator->load( file_name, "app/native/qm" ) ) {
            QCoreApplication::instance()->installTranslator( this->_translator );
        }
    }
    

    The problem is that QLocale () .name () returns the region code by DEFAULT to the language setting of the user device, ignore the region on the device setting. For example, with the language set to English device and the region set to 'United States (English)', 'United Kingdom (English),' "(English) Canada" or "Australia (English)", QLocale () .name () will ALWAYS return en_US. Similarly, with the device language set to French, and the region, the value 'Canada (French)', QLocale () .name () will return en_US, not fr_CA as it should. It is behavior actually expected QLocale, not only in the Cascades, but in Qt ordinary too.

    The solution is simple. Rather than QLocale () .name () you use QLocale::system().name() instead, which fills a QLocale with the setting of the unit in the region, not only the language CORRECTLY. The code above should be...

    void ApplicationUI::onSystemLanguageChanged() {    QCoreApplication::instance()->removeTranslator( this->_translator );
    
        // ---Initiate, load and install the application translation files.
        QString locale_string = QLocale::system().name();
        QString file_name = QString( "AppName_%1" ).arg( locale_string );
        if ( this->_translator->load( file_name, "app/native/qm" ) ) {
            QCoreApplication::instance()->installTranslator( this->_translator );
        }
    }
    

    I suspect that there are hundreds of BB10 apps out there using the code of the default model where developers can't read the languages that they located, and so they do not realize that French Canadian users get the Parisian French translation, for example. It's not so bad with English, French, Spanish, etc., where variants are close enough to the base language, but the regional variants of Chinese are in fact completely different languages.

    In any case, type a few extra characters in a single line of your application code will solve this problem. Now if only we could get the Momentics model updated with the hotfix.

    After I posted the original explanation in this thread, I realized that handling locale of the waterfall model is still more broken that I realized the original. I noticed that, although incomplete, the model code would address changes for the system language settings, but he completely ignored changes in the region during the execution of the application. My original fix the problem repairs where the region has been completely ignored, but she does not answer that becomes the region while the application is running has no effect on the text displayed in the application.

    This means that if the user changes of American English in the English-speaking Canada, while the application is running the application will continue to display American English until it is restarted. It's particularly bad, if the system language is Chinese, as changing the region can result in a totally different language. It has proved to be more sensitive to this problem than I expected, but here's what you need to do to make your application respond to changes in the region put in too.

    The first thing to know is that there are two LocaleHandler classes in Cascades, and they perform different functions related though. One that is used in the model code is defined in , but one that we must manage changes in region is defined by . The fact that we have two classes with the same name in our application means that we explicitly specify that we speak and cannot if press "using namespace" condense our code.

    It's the language Manager changed the system (including the difficulty I described above)...

    void ApplicationUI::onSystemLanguageChanged()
    {
        QCoreApplication::instance()->removeTranslator(m_pTranslator);
    
        // Initiate, load and install the application translation files.
        QString locale_string = QLocale::system().name();
        QString file_name = QString("AppName_%1").arg(locale_string);
        if (m_pTranslator->load(file_name, "app/native/qm")) {
            QCoreApplication::instance()->installTranslator(m_pTranslator);
        }
    }
    

    Let's change this code to that...

    void ApplicationUI::onSystemLanguageChanged() {
        this->setLocale( QLocale::system().name() );
    }
    
    void ApplicationUI::onRegionChanged() {
        bb::system::LocaleHandler* localHandler = qobject_cast( sender() );
    
        this->setLocale( localHandler->locale().name() );
    }
    
    void ApplicationUI::setLocale( const QString& locale ) {
        QCoreApplication::instance()->removeTranslator( this->_translator );
    
        // ---Initiate, load and install the application translation files.
        QString file_name = QString( "AppName_%1" ).arg( locale );
        if ( this->_translator->load( file_name, "app/native/qm" ) ) {
            QCoreApplication::instance()->installTranslator( this->_translator );
        }
    }
    

    He must also change the code in the constructor of ApplicationUI of this...

    ApplicationUI::ApplicationUI() {
        // prepare the localization
        m_pTranslator = new QTranslator(this);
        m_pLocaleHandler = new LocaleHandler(this);
    
        bool res = QObject::connect(m_pLocaleHandler, SIGNAL(systemLanguageChanged()), this, SLOT(onSystemLanguageChanged()));    // This is only available in Debug builds    Q_ASSERT(res);
    }
    

    .. .for this...

    ApplicationUI::ApplicationUI() {
        // prepare the localization
        m_pTranslator = new QTranslator(this);
        m_pLocaleHandler = new bb::cascades::LocaleHandler(this);
    
        bool res = QObject::connect(m_pLocaleHandler, SIGNAL(systemLanguageChanged()), this, SLOT(onSystemLanguageChanged()));
        // This is only available in Debug builds
        Q_ASSERT(res);
    
        bb::system::LocaleHandler* systemLocaleHandler = new bb::system::LocaleHandler( LocaleType::Region, this );    success = QObject::connect( systemLocaleHandler, SIGNAL( changed() ), SLOT( onRegionChanged() ) );    Q_ASSERT( success );
    }
    

    Once you have made any changes your app will meet changes in the region and the language system changes. Note that I don't provide code so that changes to the ApplicationUI.hpp to support the changes above, but rather than leave it to the reader.

  • BBM BBM always associate? Here is the solution, without formatting.

    Sometimes, when we go to a new BB device or he put in place after a restore and opens the BBM, the latter says something like, "combining BBM with your e-mail address. The problem is that this process of association continues for weeks or months for some unknown reason. However, here is the solution whitch I discovered coincidedly.

    1 - Go to settings > Date & time.

    2 disable both "Auto Update Time Zone" & "set Date and time automatically.

    3. on the same page, change the date and time in the past, as the month before.

    4 - Close BBM and restart your device.

    5. after rebooting, open the BBM. He will tell you that time & date are wrong, and you will get an an exit button, press EXIT and close the BBM.

    6 - reopen BBM; now, you have two options (output or switch BBM), choose "BBM Switch".

    7. it will not associate with your email again, but this time, it should not take more of han of 30 seconds.

    You're all set. Enjoy.

    Let me know or hit as if it works for your device.

    I spoke too fast, the user I messaged 6 hours later saying that BBM finally assocated. Looks like it worked after all!

    Thanks for the fix!

  • After update Itunes 10 to WIN and Iphone 6 do not sync.  I tried most of the solutions I found in support.  Suggestions welcome.

    I am more able to synchronize Itunes using the USB between WIN 10 PC and Iphone 6.  I've never had a problem until I recently installed the latest updates of ITunes on my PC and the phone.     Win 10 Itunes version 12.3.3.17 Iphone IOS 9.3.1.  Sorry that I wasn't able to thin Iphone Itunes version however was informed after checking the updates that I was using more current.   I tried most of the solutions found under Apple support, including the abolition of the lockdown on my PC Itunes folder as recommended.  Hoping someone has a solution.  Very frustrating when something worked very well and no longer works after installing the latest updates.

    What happens when you try? The phone is no longer recognized by iTunes? If so, try the steps here:

    If iTunes does not recognize your iPhone, iPad or iPod - Apple Support

  • Firefox 7 is slow loading web pages (more than a minute and I let it go, but I went and they finally loaded) and IE their charge quickly. I tried all the solutions aid without change. I disabled Norton without change. I am running Windows 7.

    When I restarted in safe mode, everything worked fine, so I disabled the Add-ons and plug-ins, one at the time but could not find one any of them causing the problem.

    I had the same problem and found the solution here here

    The solution involves going to about: config and change "Network.http.Max - connections" line value between 256 and 48

  • Whe trying to update ios to ios 9.3 9.2.1 come error 3194 give me the solution for all I phone and ipads

    Whe trying to update ios to ios 9.3 9.2.1 come error 3194 give me the solution for all I phone and ipads

    Try some suggestions here: If you see error 3194, error 17, or "this device is not eligible for the requested build" in iTunes - Apple Support

  • All-in-one Pavilion 23 23-b034: 2 try to install the solution Center HP for printer HP Pavilion has failed. Screenshots

    I had to do a cover of the factory recently. I can print with the HP C7280 programs smoothly. I got this printer and the solution Center works on this pc before the resumption of the plant and another pc before that.  I tried to install my printer HP all One Printer Solution Center now twice with today fails. I hope that the help of screenshots.

    I 1) downloaded a complete new installation - 2) off all antivirus - 3) restarted and restarted the printer HP - 4) the fact that all windows updates have been applied for windows 8.1 - 5) tried after the provided HP solutions but always with failure. Installation all the way to the final "device configuration"... and then expires. Thanks for any help.

    I ALWAYS KUDO AND MARKED RESOLVED. It is THE RIGHT THING to DO... doncha know. «  :-D
    Find thumbs upward, then click on to a KUDO
    Look to the right and see the OPTIONS to mark ACCEPT as a SOLUTION. Thank you!

    RnrMusicMan: (btw, former musician of Navy for this purpose) I need to send thanks a lot for your answer. I have tried, almost to the point of questioning my sanity, too many times tried too many things and all have failed. Why not go and buy a new printer? Financial considerations. Here's what I've worked with... (finally a good result there, at least the best I know for the moment at the end)

    (1) start here, I have an older HP all C720 printer wireless. I do not think at the moment there is a download of the full version which will allow him to install it in a machine of 8.1. An 8 machine if necessary, but not a 8.1 I do not...? That's what I gathered. Where I made my mistake, so, I was this old horse to battle C7280 installed on my newer HP Pavilion and worked very well with 8.1, (read on before thinking 8.1 work with the C7280) when I say great worked, I mean the Solution Center has worked. Then after a while I improved the Pavilion to 8.1 and everything was fine. A couple of weeks, I had to do a cover of the plant on the HP Pavilion. Instead of installing the software of the printer with the center of solutions right then while he was still an OS 8, I upgraded to 8.1 Loaded my favorite of all the programs and tweaks and tricks. Then I said, I'll install the old workhorse C7280. It would not, not at all, regardless of how many tips I read here, and Googling. Then I tried to install the full version of XP on one of the XP machines. No go. Something I said is prevention. Who could know. I tried to purge the XP what I knew could be related to HP. Shut off all antivirus programs, download fees, etc. etc. ad naseum. I have read and read and tried and failed and failed. You get the drama.

    So, I decided that if I could get it on the Acer Aspire one Netbook I could use as a slave, small sorta Acer server. I barely use the netbook anyway. So I couldn't do. Frustration. So I decided JUST ONE MORE ATTEMPT. And here's what I did for Acer.

    I did a factory restore. No former antivirus autour. Nothing is added. Presitine and already had Service Pack 3 with the resumption of the plant.  What follows I have none to little idea of his touch, but that's what I did.

    (2) I have an old modem that I had used as a slave of my new modem D-Link. I got it, because many of my devices will not work on the new 'n'.  I think, old modem old printer, old BONES. I have set the printer to get the old o SSID of the slave and agreed which has no password. Fortunately, I know anyone personally that could use this wireless slave and they all have their own.

    (3) so once again, I downloaded the full version of XP on the netbook. Extracted, he ran, and so he went the full installation and works.

    That's a lot, but I'm a cheap guy who hates to throw even if old devices, good. I use this Chrome extension called Extension Office remotely in order to get on the netbook from any computer and print using the Solution Center.

    I don't know what I did but I know I've worked. So this is my solution. I'm sure some could find another work around, but probably way above my paygrade.

    Once again, thanks a lot for taking the time. I think I followed your solution several, much too long and did not work. Unless I was always doing something wrong.  My solution was radical but it works for me always try to use these appliances. I just take good care of them and they last. My most recent is the HP Pavilion and it's going on 2 years now.

    Differences or questions please ask. 'Jack :-{D '.

  • I FOUND THE SOLUTION FOR THE TX WIRELESS PROBLEM!

    Hi guys,.

    IM pretty happy problem because I found the solution for my tx 1219 us wireless!

    First of all, my laptop started with wifi problems. Then, when I tried to start, nothing has been posted.

    I read a lot of posts on forums that talking about changing the motherboard by HP.

    I sent my knees to HP in Argentina - where i live - and they had sent me a budget with a «renewed» system map

    I was paying, so I pretend a new.

    Tired and frustrated on the HP customer service: they dosen´t recognize their mistake. They dosen´t give me GUARANTEE AND they pretend a lot of money for something refurbished!

    I found a post where a guy - now away for me is 'God' - explains how to fix this problem yourself! AND a lot of positions where other guys did, and they confirm that it works!

    Here's the method. Feel happy!

    This post is for the repair of the range of following HP laptop: tx1000, dv2000, dv6000, dv9000, with AMD processors and graphic chips from nvidia (6150go).
    Symptoms are more, wireless wireless card are running out, are repeatedly, the laptop, it does not ignite until several attempts and finally the laptop turns on but he did not have no image in the monitor, in some models, you listen to some sounds.

    The cause is excessive overheating of the GPU from nvidia, which has powered up to 100 degrees or but tends to fail the welds that unite it to the mother of the card.
    HP already admitted the existence of the failure in the design of the card, and extended 2-year warranty, so that if even you can demand but the desirable thing is to do, the method I describe is simple and has worked in 100% of those laptop with this problem, prefer all must do it under your own risk.

    Step 1. -It is necessary to compile the necessary material: this is a 1-cent American copper currency or a currency that similar thickness now about a 1/16 of an inch, or a piece with these features, but the copper. also we will need a table lamp with a halogen centre, or the one with the normal centres but it is 150W or but case is that it heats up a lot. disipadora thermal paste of what they take microprocessors (sold at any electronics store).

    step 2. -Once gathered our components, it is necessary to remove the mother card and remove the radiator so that they are exposed to the microprocessor and the nvidia chip.

    Step 3. -Now, we are committed to the lamp, started to warm up a while, in my case I have tapeworm a gun to measure temperatures and saw that it was 134 degrees, once it is hot we close set, but the thing at latest, the graphics chip, but on the other hand, where all the solder points are seen We leave about 5 minutes, which were both that I gave him, no doubt, it can be less, depending on the source of heat, once that done this we have pressed with the fingers with force the graphics chip (care, it will be hot), which will be expanded by heat welding is to merge.

    Step 4. -Now, we put a little disipadora in the room by both parties and we placed on the graphics chip and put the radiator and arm!

    It is with the intention of wrong correct dissipation system design since the heat produced by the chip is transferred to the coin in copper.

    Copper is an excellent conductor of heat and thus provide the heatsink of makes, initially was clearly a very small between the radiator and the chip and when warm itself does not transfer not warmth to any party since not thanks to the air, it can, but the copper coins made this work

    Greetings

    Message edited by Wendy on 30/04/2009 21:02

    Please see the procedure on YouTube

    http://www.YouTube.com/watch?v=musu759LsT4

    Message edited by Wendy on 30/04/2009 21:02

  • Receive the error message when you try to activate the solution Center

    I get an error message when I try to activate the Solution Center.  'Error in the file c:\Program Imaging\bin\hpqscloc\1033.xml HP analysis'

    I tried to remove and reinstall the entire software suite several times, but did not uninstall the Solution Center file.

    OfficeJet J6450.  Windows 7, 32 bit.

    Hey R29,.

    Start by downloading the full package of driver from here: HP Officejet full feature and driver software

    If you have recently downloaded this driver package, you may be able to skip this step. If you have problems with the steps below and impossible to find a directory, you must re-download the driver pack and launch the exe.

    1. disconnect the USB from the computer printer.

    2. now, go to start > run > and type folder

    3. search for any record label hp_web_release or 7z

    4 inside of this folder, navigate to the 'util' directory > directory 'ccc '.

    5. in there, run Uninstaller_L1 through L4 in order.

    6. check Add/Remove programs in the control panel for additional HP programs that have not been deleted and delete.

    7 remove the HP or Hewlett-Packard directory in Program Files.

    8 Goto Program Files > common files and remove the HP or Hewlett-Packard directory there as well.

    9. Select start > run and type "temp". inside this folder, delete all the files.

    10. Select start > run and type "%temp%". inside this folder, delete all the files.

    11. now restart and reinstall the driver using the driver from the web.

    Let me know if that solves the problem.

    Thank you!

    Sean

  • Photosmart C6180 all-in-one: cannot install the solution on 8.1 Center

    I received a message that there was a problem with the Solution Center. I uninstalled, but were not able to reinstall.  I thought that maybe the printer Installation Wizard might help, but that can not install no more. The printer is getting to be about 7 to 8 years, but still works fine. The 8.1 is an upgrade of Windows 8. When I choose the download, nothing happens.

    Hello layor.

    Welcome to the HP Forums.

    I see that you have a problem for the printer, re-installed on your computer.

    If you have the printer connected to the computer with a usb cable, please remove both ends and pass the cable on the side for now.

    Please start by clicking on the following link for uninstall the printer software.  We want to make sure that the old software has been completely removed until we are trying to re - install.

    Once the uninstall is complete, restart the computer so that the changes take effect.

    When the computer is back on, disable firewalls or anti-virus protection.  We don't want anything blocking the download depending on whether I'm going to give you.

    Here is the link for the drivers and software HP Photosmart full feature.  Save this file on the desktop of the computer so that it creates its own icon.  It will be easy to find when the download is complete.

    Double-click the new icon and follow the installation instructions.  You will receive connectivity options. If you choose to use a USB connection, do not connect it until you are prompted to do so.

    If you have any questions or concerns, feel free to write me again at any time.

    See you soon,.

  • HP Photo essential 3.5 work anymore and say internet explore checks to the solution.

    Original title: HP Photo essential 3.5

    When I open photo 3.5 essential, once a minute or so, it stops to work and say internet Explorer checks for the solution. So basically, when I go there to do she anything close.

    Hello
    UN-install no matter what program won't uninstall the settings and data of that particular program.
    UN-installing Hp Photo essential 3.5 will not uninstall the photos corresponding to this.
    Note: For more details, you can contact HP.
    For issues with Windows Live Photo Gallery you can post here: http://answers.microsoft.com/en-us/windowslive/forum/gallery
  • Where are the Solution Center shortcuts, and how to use the (Scans)

    A frustration more than Windows 8 to get more than

    I have attached my C3180 to my new Windows 8 machine and the software installed.  It is running, but I'm a bit lost in the use of the center of Solution that seems different from what I had on XP.

    1. the only way I could see to change the destination of a scan, has been to create a new shortcut with the destination I want to use.  Is this correct?

     

    2. now that I have a short cut, where is it? When I run a scan from the Solution Center, the analysis proceeds to the default destination, so it must use the default shortcut.

    Is it possible to use the start scanning on the home of the solution Center window and make the scan go to my choice of the destination folder?

    Quit smoking research

    I found how to use the solution Center in Windows 8 here.

  • Using Vista. Windows Live Mail error ID 554: Ox800CCC6F. What is the solution?

    Using Vista.  Windows Live Mail error ID 554: Ox800CCC6F.  What is the solution?

    Hello

    I would tell you to post your questions in the Windows Live forum as the problem are related to Windows Live Mail.

    Here is the link: http://windowslivehelp.com/product.aspx?productid=15

  • When I turn on the system of its display in the moniter as NTLDR missing.please give me the solution for this problem.

    When I turn on the system of his displayiing on the moniter as NTLDR missing. Please give me the solution for this problem

    Hello

    NTLDR is not used for installation of Vista, it's a vestige of WinXP / 2K. If it is listed as "missing", then your boot sector is damaged and must be repaired. The steps are described here: http://support.microsoft.com/default.aspx/kb/927392?p=1

    Good luck, Rick Rogers, aka "Crazy" - Microsoft MVP http://mvp.support.microsoft.com Windows help - www.rickrogers.org

  • DeskJet D1460 appearing is not in the solution Center

    I recently had problems with my HP Deskjet D1460, which I tried to solve by uninstalling and reinstalling the printer driver and all related software. A fatal error occurred during installation, the installation has been reversed and a solution has been downloaded. After you follow the steps in the solution, I tried to reinstall it again, only to be presented with a message saying that the software was already installed - it turns out that the installation was not reversed after all. Further investigation showed that the printer works, although the original problem had not been resolved. I managed to find the cause of the issue to Google Chrome and solved the problem in uninstalling and reinstalling Chrome. So, I now have a fully functional printer. But here's the problem: the printer is no longer appears in the HP Solution Center. Before reinstall, it appeared there but would not show ink levels. Now, it disappeared completely, but my other printer HP Photosmart Plus B209a-m is the ink level still there and display. No idea why the Deskjet disappeared, and how can I get it back?

    Hi nintendoboy15,

    At this point, if all you really need is to check on the D1460 ink levels, you can do that with the HP print and Scan Doctor. Once you download and run the HP print and Scan doctor, you will want to choose the Photosmart D1460 and then it will bring you to a screen showing there are missing software or difficulty printing or difficulty of analysis. If you click on the printer and then the ink levels, you should be able to see them there. I know this isn't a fix for the problem, but I hope this work around makes life a little easier

    Hope you have a good week!

Maybe you are looking for