answersLogoWhite

0

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

16y ago

What else can I help you with?

Related Questions

How do you calculate speed from ratios and input or output speed?

To calculate speed from ratios and input or output speed, you can use the formula: ( \text{Output Speed} = \text{Input Speed} \times \text{Ratio} ). If you have the input speed and the ratio of output to input, simply multiply the input speed by this ratio to find the output speed. Conversely, if you have the output speed and need to find the input speed, you can rearrange the formula: ( \text{Input Speed} = \frac{\text{Output Speed}}{\text{Ratio}} ).


How do you write on phones?

To write on phones, you can use the built-in touchscreen keyboard that appears when you tap on a text field. For more extensive writing, you might consider using voice-to-text features, which convert spoken words into text. Additionally, various writing apps and note-taking tools are available for more organized writing. Lastly, if you prefer handwriting, some devices support stylus input for writing directly on the screen.


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.


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.


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....


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

a generic input device


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

Use an SLR parser algorithm.


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).


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);