Phone will only type one letter in text message

The last time I was using my phone I was deleting words from my user dictionary.  I realized my phone was dying so I pushed delete and instead of the ones I had selected being deleted, the entire dictionary was just replaced with only three letter words, with about 4-7 copies of each word (this may be a separate problem).  Then I saw the option to calibrate the keyboard, I started doing this and the phone died in the middle of it.  I don't know if any of this has anything to too with my problem but....
When I plugged in the phone I couldn't text.  the phone will type only one letter and then freeze.  I can exit to the home screen but the keyboard remains on screen.  the phone types normally everywhere but in the messaging box.  also I can receive texts fine, and was told by someone that my phone had sent random texts from a month ago when it turned off and on. 
Can anyone give any insight to my problem(s)?  it is greatly appreciated.

Try installing Smart Keyboard and see if the issue is there with another keyboard... https://market.android.com/details?id=net.cdeguet.smartkeyboardtrial&feature=search_result

Similar Messages

  • TS1630 My phone will not ring for calls or text messages. It also will not play music out loud.

    My phone will not ring for messages or texts. It also will not play music outloud. I know it's not the speakers because it does make noise when I type in my password and sometimes when I am in the settings for the ringtone. It will not make the message sounds in settings. With headphones it makes noise. I don't know what to do and I've tried all the settings. Has this happened to anyone else? The silence key on the side is off. I've tried restarting it, but it does not work. Sometimes it will make noise when I am typing, but only a few times. I haven't dropped it and I have an otterbox, so I don't know what would cause it to do this...?

    Everyone you are way over thinking this as did i at first. My wife had the same issue. there is i switch right above the volume button as demonstrated  on this link. its designed for lets say you into a class or meeting you can switch the phone to silent quck and easy.
    http://support.apple.com/kb/TS1205
    hope this helps.
    -Josh

  • Phone will not send or receive any text messages

    My Samsung Illusion will not send or receive text messages but the calling feature still works. I've tried all of the troubleshooting techniques, including a hard factory reset, yet the messenger still won't work. Any suggestions??

        abbs35,
    This is concerning! When did this stop working? Do you get any type of error message? Please share.
    ErinW_VZW
    Follow us on Twitter @VZWSupport

  • My Iphone 5 will only vibrate when receiving a text message

    My Iphone 5 will only vibrate when receiving text messages

    I have the same problem on a 4S, however, it happend before upgrading to 6.1.3. Upgrading didn't solvetheproblem.

  • I phone will not send or receive ANY text messages.

    My daughter has an iphone and it recently stopped sending or receiving text messages.  We have done several resets, spent hours on the phone with tech support, been sent a new phone, and can't seem to get this resolved.  I'm curious if anyone else has had a similar issue?

    are you talking about storage or data as in how much you can download from the Internet with your carrier each month?

  • Installed and Unusable Can only type one letter and then have to wait

    FF4 unusable Takes three minutes to type 120 characters in the feedback page. Moving from one tab to another can take 30 seconds. Have uninstalled gone back to V3 Would have been impossible to send this question using FF4

    FF4 unusable Takes three minutes to type 120 characters in the feedback page. Moving from one tab to another can take 30 seconds. Have uninstalled gone back to V3 Would have been impossible to send this question using FF4

  • My PSE12 will only type CAPITAL letters no matter what font I choose.  Started doing this yesterday

    My PSE12
    will only type CAPITAL letter no matter what font I choose.  Started doing this yesterday and I can't get back to having upper and lower case letters.

    Perhaps you could reset the tools using this method:
    1) Launch PSE in Editor Mode
    2) click on the Expert Tab
    3) At the bottom right corner look for something like this :
    This should solve the problem quickly.
    Good luck and post back.

  • Text file will only print one set of input and puts in end for name.

    Okay, I have this more or less straightened out. Only thing is, it creates the text file, and will only enter one set of data. It will not print the other students information to the text file. The other thing it does is puts in the student name as end. I think that has something to do with the fact that I need to compare the student name field (SName) to end, so the program can be ended. Anyone have some ideas? I have been working on this for almost 2 weeks, and am about ready to throw the computer off a cliff..
    Thanks.
    import java.io.*;
    import java.lang.*;
    import java.text.*;
    import java.util.*;
    import java.text.DecimalFormat;
    import java.lang.Comparable;
    class my_main
         public static void main (String [] args) throws IOException
         gradebook pt= new gradebook();
         pt.compare();
    class gradebook
         char LG;
         double gr1;
         double gr2;
         double gr3;
         double avg;
         String SName;
         String IDNO;
         String nameupper;
         int compareTo;
         void compare()throws IOException
         FileWriter file= new FileWriter("Grades.txt");
         BufferedWriter bw= new BufferedWriter(file);
         PrintWriter outfile= new PrintWriter(bw);
    BufferedReader stdin;
    stdin= new BufferedReader (new InputStreamReader (System.in));
    System.out.println("Enter Student Name or End to Quit: ");
    SName= stdin.readLine();
    nameupper= SName.toUpperCase();
    DecimalFormat fmt= new DecimalFormat ("##.##");
    outfile.println ("");
    outfile.println (" STUDENT GRADES ");
    outfile.println ("");
    outfile.println ("SName ID # GRADE 1 GRADE 2 GRADE 3 AVERAGE LETTER");
    while(nameupper.compareTo("END")!=0)
    if (nameupper.equalsIgnoreCase("END"))
    break;
         System.out.print ("Student ID: ");
         IDNO= stdin.readLine();
         System.out.print ("Grade One: ");
         gr1= Double.parseDouble(stdin.readLine());
         System.out.print ("Grade Two: ");
         gr2= Double.parseDouble(stdin.readLine());
         System.out.print ("Grade Three: ");
         gr3=Double.parseDouble(stdin.readLine());
         System.out.println ("");
         avg=(gr1+gr2+gr3)/3.0;
         if (avg >= 90) LG = 'A';
    else if (avg >=80 && avg <90) LG = 'B';
    else if (avg >=70 && avg <80) LG = 'C';
    else if (avg >=60 && avg <70) LG = 'D';
    else LG = 'F';
    System.out.println("Enter Student Name or End to Quit: ");
    SName= stdin.readLine();
    nameupper= SName.toUpperCase();
    outfile.print (""+SName);
    outfile.print (" "+IDNO);
    outfile.print (" "+fmt.format(gr1));
    outfile.print (" "+fmt.format(gr2));
    outfile.print (" "+fmt.format(gr3));
    outfile.print (" "+fmt.format(avg));
    outfile.print (" "+LG);
    outfile.println("");
    outfile.close();
         

    Not 100% sure this is what you're after, but it seems to work OK
    import java.io.*;
    import java.lang.*;
    import java.text.*;
    import java.util.*;
    import java.text.DecimalFormat;
    import java.lang.Comparable;
    class my_main
      public static void main (String [] args) throws IOException
        gradebook pt= new gradebook();
        pt.compare();
    class gradebook
      char LG;
      double gr1;
      double gr2;
      double gr3;
      double avg;
      String SName;
      String IDNO;
      String nameupper;
      int compareTo;
      void compare()throws IOException
        FileWriter file= new FileWriter("Grades.txt");
        BufferedWriter bw= new BufferedWriter(file);
        PrintWriter outfile= new PrintWriter(bw);
        BufferedReader stdin;
        stdin= new BufferedReader (new InputStreamReader (System.in));
        System.out.println("Enter Student Name or End to Quit: ");
        SName= stdin.readLine();
        nameupper= SName.toUpperCase();
        DecimalFormat fmt= new DecimalFormat ("##.##");
        outfile.println ("");
        outfile.println ("STUDENT GRADES ");
        outfile.println ("");
        outfile.println ("SName ID # GRADE 1 GRADE 2 GRADE 3 AVERAGE LETTER");
        while(nameupper.compareTo("END")!=0)
          if (nameupper.equalsIgnoreCase("END"))
          break;
          System.out.print ("Student ID: ");
          IDNO= stdin.readLine();
          System.out.print ("Grade One: ");
          gr1= Double.parseDouble(stdin.readLine());
          System.out.print ("Grade Two: ");
          gr2= Double.parseDouble(stdin.readLine());
          System.out.print ("Grade Three: ");
          gr3=Double.parseDouble(stdin.readLine());
          System.out.println ("");
          avg=(gr1+gr2+gr3)/3.0;
          if (avg >= 90) LG = 'A';
          else if (avg >=80 && avg <90) LG = 'B';
          else if (avg >=70 && avg <80) LG = 'C';
          else if (avg >=60 && avg <70) LG = 'D';
          else LG = 'F';
          outfile.print (SName+" "+IDNO+" "+fmt.format(gr1)+" "+fmt.format(gr2)+
                          " "+fmt.format(gr3)+" "+fmt.format(avg)+" "+LG+"\r\n");
          System.out.println("Enter Student Name or End to Quit: ");
          SName= stdin.readLine();
          nameupper= SName.toUpperCase();
        outfile.close();
    }

  • I am having a painful problem with itunes 10, everytime I go into the itunes store to search for a song, even if I type one letter in it will instantly launch into search mode and doesn't stop, so I'm unable to find

    I am having a painful problem with itunes 10, everytime I go everytime I go into the itunes store to search for a song, even if I type one letter Itunes will instantly launch into search mode and doesn't stop, so because I can never get past putting in the first letter or two, I'm unable to search and download any songs. I am on the latest Imac Intel core i7 Mac OS X, can anybody help?
    Thankyou.
    Beckyg.

    Having this problem too: IT'S REALLY REALLY ANNOYING!!! Anyone have an idea how to sort this?

  • When importing files into fcpx from go pro hero2, some are importing as .mov and some as .mp4. when making a multi cam clip it will only add one type, if you try and add the other it says camera clip cannot be processed.

    when importing files into fcpx from go pro hero2, some are importing as .mov and some as .mp4. when making a multi cam clip it will only add one type, if you try and add the other it says camera clip cannot be processed. need to figure out why it randomly imports differently, or how to add different file tyoes to multi cam.

    here is one that is imported and stays .mp4. the specs are same as original file before import.
    here is one that has changed somehow during import. specs on original file are same as above, but once it is imported it changes to this in event folder, and others randomly keep the above specs.

  • After i have downloaded an album from iCloud to my new macbook pro. Itunes will only play one song at a time. If i hit the fast forward or back button will not do anything. I have to use the mouse to hit the next tidal in the album then hit play for it

    after i have downloaded an album from iCloud to my new macbook pro. Itunes will only play one song at a time. If i hit the fast forward or back button will not do anything. I have to use the mouse to hit the next tidal in the album then hit play for it to play the next song. Or put it in the UP NEXT.

    First, make sure these items have checkmarks next to their names in iTunes. Continuous playback only works on checked items. Itunes will play all checked items in a list whether or not they're from the same album.
    If you see that nothing in your library is checked and you want to check everything, hold down Ctrl while checking an item. This checks everything.
    Next, fixing the "1 of 1" problem is easily. Select all the tracks that make up the book/album. Let's say there are 15. Press Ctrl-I. Doublecheck that the album box is filled in with the name of the book, and if not, type it there. Enter "15" in the box for the total number of tracks. Click OK. Now all the items should be "1 of 15," "2 of 15," and so on.

  • HT1670 Sync iPhone/Entourage will only recognize one of my two iPhones?

    I have two iPhones. One I have managed to sync no problem, but the second is just not interested! A friend told me that with iPhone/Entourage will only recognize one iPhone, if so is there anything I can do to sync my second phone?

    Hi, Darcie13.  
    Thank you for visiting Apple Support Communities. 
    If your device is not recognized by iTunes, I would recommend the steps in the article below.  Start with the section labeled Verify that the Apple Mobile Device USB Driver is installed > For Windows Vista, Windows 7, and Windows 8 > If the Apple Mobile Device USB Driver is not listed.
    iPhone, iPad, or iPod touch not recognized in iTunes for Windows
    http://support.apple.com/kb/TS1538
    Cheers,
    Jason H.

  • Will only print one page.

    When i go to a multi page site ,the printer will only print one page .

    Hi @elkman_5883,
    Welcome to the HP Forums!
    I noticed that your printer will only print one page, and I am happy to help you with this issue!
    For further assistance, I require some additional information:
    The Product/Model Number of your printer. Follow instructions in this link. Finding Your HP Product Model Number.
    If you are using a Windows or Mac Operating System, and the version number. To find the exact version, visit this link. Whatsmyos.
    If the printer is connected, Wireless, Ethernet, or USB.
    If the printer is able to make copies.
    If the power cable is plugged into a surge protector, or directly to the wall outlet. Issues when Connected to an Uninterruptible Power Supply/Power Strip/Surge Protector. This applies to Inkjet printers as well.
    Please see this post, Want Good Answers? Ask Good Questions, by @Bob_Headrick, so you can get the most out of these forums.  
    If you are using Windows, I recommend trying our HP Print and Scan Doctor, and please let me know what happens!
    Hope to hear from you soon!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • I have an all in one with wifi. It will only print one or one and a half pages

    My printer will only print one or one and a half pages at a time.

    Hi , Welcome to the HP Forums! I noticed that your HP Envy 4500 printer will only print one or one and a half pages, on Windows 8.1. I am happy to look into this printing issue for you!  Some questions for you:  What happens when you try print multiple copies? Copying Documents.Do you see any error messages on the front panel of the printer when it stops printing? Does the paper get stuck inside the printer? What happens if you print from NotePad? 
    In the meantime, please try the HP Print and Scan Doctor, and let me know what happens!  Hope to hear from you soon!  “Please click the Thumbs up icon below to thank me for responding.”

  • My folders in my email accounts are not on my phone?  Only with one email address are they.

    My folders in my email accounts are not on my phone?  Only with one email address are they.       Any reason why?

    Care to share which OS, email client & versions you are using?
    iOS is for mobile devices. 

Maybe you are looking for

  • MacBook Pro 13" Suddenly Started Running Super Slow, please help!

    Yesterday I was on the computer on Facebook, then I spilled a juice over the keyboard. I turned it off and let it sit there, then I turned it on and it took about 3 minutes to show the Log in screen, then I logged in and it was taking long to load th

  • How do I delete large number of duplicates on my Itunes w/o Ctrl+Click

    I have a large number of duplicates that were loaded onto my ITunes and I would like to delete them. So far the only way I have found is to go down the list one at a time and Ctrl+Click and then delete. Since Itunes can designate duplicates, is there

  • Open bookmark in a new tab using mouse only - how?

    Is there a way you can open a bookmarked page in a new tab using your mouse only? Like pressing the middle mouse button in FireFox. I don't like using an extra button on the keyboard to do this, or opening a new, empty tab first and then clicking on

  • Patch for ESSBASE 11.1.2.2

    Hi All, I had Applied patch for 1. Shared Servcies 11.1.2.2  (14020629) .300patch 2.EPM Workspace 11.1.2.2 (13936087).300patch 3.Planning 11.1.2.2             (13905088) .300patch 4.FDM & FOR ERPI 11.1.2.2 (14173894).300patch i want to apply patch fo

  • Why is firefox not showing plugin?

    Not working