Motorola Droid :: Text Keeps Reverting Back An Old Number / Fix It

Nov 20, 2009

For most contacts I have *82 in front of the number which will unblock my number because I have my caller ID blocked by default through Verizon. Because text messages will not work with *82 in front of the number I store the same contact without it and use that for texting.

My Droid when texting will sometimes replace the current number I am using with the *82 version even if I have deleted the *82 number for that contact. The only way I know this has happened is when the person I am texting says they did not received it or if I am texting someone who is also on Verizon network and the text delivery status will stay at pending.

Motorola Droid :: Text keeps reverting back an old number / Fix it


Motorola Droid :: Reverting Back To Stock

Apr 30, 2010

So I just purchased an incredible (couldn't resist lol).. And now I am trying to sell my droid on ebay (if anyone is interested let me know!), but whenever I used RomManager to revert back to stock image. I get an error and it fails. I have already ported my number over to my incredible, so I can only use wifi. So what other way is there to go back to stock so I can wipe the device and sell it. Or is there some other way that I am not thinking of? Something on the phone, like stock image I can flash through clockwork recovery and be done? (if so anyone have a link?)

View 1 Replies View Related

Motorola Droid X :: Re-installing Leaked 2.2 After Reverting Back To 2.1 And Rooting

Sep 22, 2010

I loaded the leaked 2.2 when it first became available and then deleted update.zip from the SDCard Directory. 2.2 worked fine.I reverted back to 2.1 in order to be able to get the OTA version of 2.2. Reverting worked fine.I rooted 2.1 using Universal Androot.I installed the following apps: Titanium Backup, Root Explorer, DroidXBootstrap,I did a nandroid backup using Bootstrap.Based on the reports I read today of the OTA 2.2, I decided to re-install the leaked 2.2 Using Root Explorer, I moved su from Bin to Xbin directory in order to preserve root status.I connected the Droid X to my laptop and copied Update.zip to the SDCard. Note that my SD card if almost full - only 25MB left after copying update.zip.I then booted, cleared cache and proceeded to run the update.

View 4 Replies View Related

Motorola Droid :: Reverting Back To Stock - Can Save Apps

Aug 2, 2010

Is it possible to revert from a ROM back to stock and save my apps (non-root ones of course). I have titanium backup, but once I am back to stock I won't be able to use it.

View 2 Replies View Related

General :: Reverting Back To Android 2.3.1 From 4.1.2

Nov 21, 2013

A couple of days back I updated the OS of my Samsung Galaxy S2 to the latest version but now it is lagging like crazy and the apps are starting to crash a lot. So I have decided to change back to the Gingerbread OS and I loved it in my S2.

Here are the details of my phone.

Model no: GT- 19100
Baseband version: I9100BULS1

View 2 Replies View Related

KitKat 4.4 :: Nexus 4 - Reverting Back To 4.3?

Dec 2, 2013

Some issues are correctable through doing a factory wipe. Other issues can be corrected through reloading the image from Google's own factory image repository. However, some things (in particular the battery drain issue) seems to be an issue within 4.4 itself, and the only solution I've found has been to revert from 4.4 to 4.3.

So I'm posting this thread and asking the more knowledgeable users here on AndroidForums to post clear, concise directions for acquiring and flashing these devices back to the Google "factory image".

The reason I'm asking for the community to pitch in is that the instructions I've seen are kind of scattered, are not necessarily up to date, and they can and do vary depending on whether you're doing this with Windows XP, Windows 7, Windows 8, or with Mac OS X, or with Linux.

I was able to re-flash my Nexus 4 in Lion back to 4.3, but I had to do editing of bash shell scripts and even then had to issue the execution of the appropriate shell script from the exact right spot or else it couldn't find the command, or couldn't execute the command. The directions on Google's site were incomplete, and the ones I found on various message boards seemed more like an author's "best guess" than authoritative "you can trust that this will work" workflows.

View 24 Replies View Related

HTC EVO 4G :: Rooted By Reverting Back To 2.1 / Camera Not Working Now

Nov 10, 2010

I used the method of rooting by reverting back to 2.1 then use unrevoked now my camera won't work any tips? I love my root but also my camera is a very nice feature.

View 11 Replies View Related

HTC Magic :: How To Reverting Back To 1.5 From 2.1 And To Factory Settings

Jun 9, 2010

i have a htc magic which i rooted and installed the 2.1 rom. played around for a few weeks and i miss the features i had before and it was making my phone really sluggish. i tried just flashing the factory ROM, Version 3.03.990.6, back into my phone. i ran the program on the computer, followed everything and waiting. half way through the process it tells me theres an error and cant continue. it whipped out my OS and i had to put 2.1 back on my phone. how can i revert back to 1.5? how can i revert it back to factory settings?

View 4 Replies View Related

Nexus :: OTA Updates - Reverting Back And Apps After Rooting

Mar 17, 2010

I'm contemplating if I should root my Nexus One mainly because I really want that extra performance boost. However I have a few questions. First will I still receive the OTA updates Google pushes out? And secondly, will I be able to revert back to stock android OS after rooting. And lastly, do all the Google apps work (mainly the Google GPS Navigation) without problems?

View 9 Replies View Related

Android Webview - After Changing Scale To 1.5 It Reverting Back?

Apr 26, 2014

I wrote a sample application which displays some test message using webview .The Application has two activities, one activity simply contains a button, when user click on this button , it launch another activity which display the test message on a webview .

I have set setInitialScale() of webview as 150, Now the issue is like, Normally webvbiew displays the content with the scale size 150 (as I set ) but some times it displays the contents with a scale greater than 150.

I overrided the onScaleChanged() function in webViewClient.

In normal case before drawing the content on webview I am getting onScaleChanged() callback ,with the value oldscale as 2 and new scale as 1.5. When issue occurs , I am getting two onScaleChanged() callbacks before drawing the content!!! ,at first I get the onScalechange() callback with oldscale as 2 and new scale as 1.5 , after that getting another onScaleChanged() callback with oldscale as 1.5 and new scale as 2.0 and hence it draws the webview with the scale 2.0 irrespective of setInitialScale() I have given in my application.

This issue happens only in the case if I set setInitialScale() to a value less than device's default webview scale. As per my understanding ,Every device has its own default Scale for webview based on their display property like .075 for ldpi and 1.5 for hdpi etc )

In my device defaultScale for webview is 2, and I set the setInitialScale() as 1.5(150)

normaly webview reset the scale from 2 to 1.5 before draw ( That is from defult to new value ) and it works fine
But some time after changing the scale to 1.5 it reverting back to 2. and issue occurs

public class webActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
[Code].....

View 1 Replies View Related

General :: Reverting Back To Stock After Factory Reset

Jun 26, 2013

I think I done something wrong with my rooted htc one X. I wanted to sell it and didn't think of doing harm when I deleted all the files off the phone and factory reset it. Lost my backups and I can't even boot it now anymore.

Found this [URL] .... and I'm wondering if it would be alright to follow that guide and hopefully get the phone to boot again?

View 1 Replies View Related

General :: Reverting Back Handset To Default Font

Sep 27, 2013

I installed "Root tools" by "JRummy Apps" on my Samsung Galaxy Y Duos Lite GT S5302 (Android 2.3.6) and then installed a font. But now i want to revert back my device to the default font.

But, I'm unable to do so. Does factory reset will work? Or what else should I try ??

View 8 Replies View Related

Motorola Droid X :: Text Messages From A +1 Number

Oct 26, 2010

someone i know has an x, and he said he gets text messages from +1 numbers (they are people in his phonebook), and he cant reply to them, so he has to delete the thread and start over.anyone have any idea why this is, or how to fix it?

View 4 Replies View Related

HTC EVO 4G :: Screen Timeout Setting - Keeps Reverting Back To The Default 30 Secs

Jul 8, 2010

I have my Screen Timeout setting set to 2 mins. Menu>Settings>Sound&Display>Screen Timeout. but it keeps reverting back to the default 30 secs. Any ideas on how to keep it set at 2 mins?

View 6 Replies View Related

Motorola Droid X :: How To Check Number Of Text Messages?

Jul 22, 2010

I'm new here and my Droid X is my first android phone. I was just wondering how do I check the number of txt messages I have as of right now? Me and friend txted each other a lot the first and second day I got it and i think i went through over 300 in 2 days. I just want to know like how to check the exact number, if i even can.

View 5 Replies View Related

Sprint HTC Hero :: Bookmarks In Stock Browser Reverting Back To Default Ones?

Mar 20, 2010

Anyone else have the problem of their bookmarks in the stock browser reverting back to the default ones? Twice in the last week I have lost all of my bookmarks on a phone power off and back on - I did not go in and clear any data or cache in the browser.

View 2 Replies View Related

Motorola Droid :: Mobile Number Comes Up Twice When Typing Name In New Text Message

Dec 20, 2009

when i go to compose a new text message and start typing a friends name.. their mobile number comes up twice..

View 2 Replies View Related

Motorola Droid :: Get Pictures That Go With Contact To Show Up When They Text / Call Gvoice Number?

Nov 12, 2009

So I have my Facebook account set to sync with my contact but I use Google voice all the time for text and phone. Is there a way to get the pictures that go with my contact to show up when they text or call my gvoice number?

All my pictures are from Facebook so if everything works right the pictures I see in gvoice should be the same as the profile pix in FB.

View 5 Replies View Related

Motorola Droid X :: Backup Stock Setup For Reverting From Themed

Oct 15, 2010

I'm rooted now and about ready to do my 1st theme...DroidBlackGlassX DeOdexEERR.

Is there a way to back up my stock LP+ set up so If I don't like the Black Glass and can revert back? Or want my LP+ setup but only with a black bar? I thought I could with bootstrap, but I think I'm wrong...also thought I could with Ti Backup...but again, I think that's only for apps.

View 25 Replies View Related

Motorola Droid :: Get Phone Back To Receive Updates Without Wiping All My Text?

Feb 9, 2010

After reading that 2.1 is "supposed" to drop this week, I have a rooted droid running Beast 7.4 which has the OTA disabled. Is there a way to get the phone back to being able to receive the update without wiping all my text/e-mail/call logs/pics? I'm guessing it would require moving to a different ROM or just back to the original 2.0.1 update...but I'm not clear how to do it. If anyone can post a link or explain it in non-Linux lingo, I would greatly appreciate it! I just don't want to have to revert back to the original 2.0.1 and lose everything...don't care about the apps because I can just re-install those.

View 11 Replies View Related

Motorola Droid :: Something Highlighted In Orange When Back Out From Text Msg Into Home Screen

Dec 15, 2009

Whenever I back out of a screen mainly txt msg, I get something highlighted in orange, and when I back out into the home screen it does the same thing. Usually it highlights either the phone shortcut or the wifi icon in my power bar.

View 4 Replies View Related

Motorola Droid :: Move Back And Forward Within Text On Soft Keyboard?

Nov 18, 2009

Sorry for the newb question. Of course you can tap in the right spot, but that is not very accurate. The d-pad on the hard keyboard works of course, but what about on the soft keyboard?

View 8 Replies View Related

Motorola Droid X : Back Button Functionality - Cannot Simply Go Back One Menu Using The Back Key

Jul 15, 2010

This is my first android device and i'm loving it... but one thing that irks me is the use, or lack thereof, of the back button.

As I am navigating menus and options in the Settings, I cannot simply go back one menu using the back key. For example, if I go to Settings->Battery Manager->Battery Profile Options and want to go back to the Settings screen, I cannot.

Pushing the back button does nothing and I can only go back to the Settings menu by going Home, then re-entering.

Another quirk regarding the back button is when reading emails. Using a regular email account such as Hotmail, I cannot simply read an email and go back to the inbox using the button.

It makes navigating the phone very tedious.

View 5 Replies View Related

HTC Droid Eris :: Adding Phone Number To A Text

Dec 21, 2009

Is there a way to add a phone number from your Contacts to a text message, without attaching the contact as a vCard? Some of my friends can't get the attachment and I just want to be able to copy and paste the number into the text body.

View 2 Replies View Related

Motorola Droid X :: Can't Revert Back To Back Up - Stuck In Bootloop

Sep 4, 2010

I'm roooted. I downloaded bootstrap and the first thing i did was create a nandroid back up for my x. then i proceeded to try and install tranquility rom. it got stuck in a bootloop. so when i rebooted into recovery it now goes for some reason to the droid stock recovery and i can't revert back to my back up. what do i do?!

View 4 Replies View Related

Motorola Droid X : Back Button - Swipe Left To Right On Maybe The Top Bar It Goes Back

Jul 19, 2010

I'm finding that I'm using the back button A LOT whether browsing the web or just navigating the OS. It kind of sucks because the buttons on the droid x are well, really small, and sometimes hard to press because they are so narrow and flimsy feeling. And depending on how you are holding the phone, it could be a good bit of distance for your thumb to travel or I'm finding myself having to reposition the phone in my hands just to reach the back button, which you seem to need very frequently.

Anyone know of any kind of back 'swipe' implementation ? Like some software you can install that makes it if you swipe left to right on maybe the top bar it goes back?

View 4 Replies View Related

General :: How To Back Up And Restore IMEI Number

Aug 7, 2013

How would you backup and restore your IMEI number? I have Non-Samsung and Non-MTK device...

I have Huawei U8800 pro running on Stock GB with Snapdragon S2 SOC.

View 9 Replies View Related

Motorola Droid :: Google Voice Text Going Against My Regular Text Charges

Mar 28, 2010

why are my google voice text going against my regular text charges !

View 3 Replies View Related

Motorola Droid :: Turning Off Text To Speech For Incoming Call / Text

Dec 7, 2009

I somehow activated the text to speech for incoming calls and text messages. (Says the name of contact calling/texting).How do I shut this off? I've spent days trying to figure it out with no luck.

View 5 Replies View Related

Motorola Droid X :: Block A Number

Oct 11, 2010

I keep getting these spam texts from this weird number and want to block it from contacting me.. how do I do this?

View 10 Replies View Related







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