answersLogoWhite

0


Best Answer

You mean "predictive". The phone central processing unit (CPU) keeps a record of what words you type frequently. It keeps an index of the first few letters and keeps adding more words as you type them. So, the next time you're typing a word you've typed before, it'll guess the most popular word you've used based on the first few letters.

There is another type of predictive text input, based on grammar. If you've typed a sentence before, the phone will start to guess what the next word is based on a previous similar sentence. Not all phones have this, though.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How does phones use predective input text?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is it possible to get texting on 3DS?

yes you can use yahoo messenger which can text to phones.


What cell phones can you use text free software on?

iPhone. iPod Touch. iPad.


What is keuboard?

keyboard is actually a most common input device use to give input to the computer in the form of text , graphic and many more....


How teenagers use mobile phones in negative way?

they can text or call people they dont know


Do you need separate phones for text and Twitter?

You can only use one display photo on Twitter.


How do you check a user's text input in C plus plus?

Use an SLR parser algorithm.


When you use an IDE instead of a Simple text editor to develop a program?

a generic input device


How do you get contests of an input box using javascript?

Firstly, you have to have an ID assigned to the input field: <input type="text" id="ourText"> Then you use the getElementById. The property of the input field that contains the text entered is called "value." In this case, I'm going to store it in a variable I've named "userEntered." Then I'll use it in an alert. var userEntered = document.getElementById("ourText").value; alert(userEntered);


What app for the ipod do you use to text cell phones?

There are many apps you could use, but a couple good ones are TextPlus and UnlimitedTextFree.


How do you turn off auto correct for your HTC Inspire cell phone?

Open up "all programs" and then "settings". scroll down and tap "Locale & Text", tap on "Touch Input" tap on "Text Input" and uncheck predictive text and also word completion if you want to. This will stop the keyboard putting in it's own words (so you can use the security image things).


What is the result if you use input text in php?

Assuming you are using Method="POST" then following: $myinput = $_POST['thename']; If your Method="GET" then the following: $myinput = $_GET['thename']; The Name is set as follows: <input type="text" name="thename" />


What tag would you use to create a submit button with the label send form?

To create a submit button, use the input type submit. To assign text to the button, pass the text in as the value of the value attribute. Like so: <input type="submit" value="Send Form">