Questions tagged [t9]

T9 predictive text technology for cell phones with a numeric keypad.

T-9, which stands for Text on 9 keys, is a patented predictive text technology for mobile phones (specifically those that contain a 3x4 numeric keypad), originally developed by Tegic Communications, now part of Nuance Communications. The patents have expired.

The Wikipedia article T9 (Predictive Text) describes it.

21 questions
0
votes
1 answer

How to perform t9 search, using python?

I have the code: f = open("dict.txt", "r") M = [] for line in f: l = line.split(" ") M.append(l) print(M) phone_letters = [ ["a", "b", "c"], ["d", "e", "f"], ["g","h","i"], ["j","k","l"], ["m","n","o"], …
0
votes
0 answers

In Android, how may I append text to an EditText that was written with setText?

I have two buttons and an EditText. Button 1 has "ABC" while button 2 has "DEF". I've set up a counter within button1 so that pressing button 1 sets the text to either A, B, or C. In the runnable I set the selection to the end of the editText after…
Carl
  • 249
  • 2
  • 5
  • 13
0
votes
1 answer

Finding a sub-trie by edge in OCaml - T9 predictive text implementation

I’m very new to OCaml and having a difficult time implementing a series of functions to build a T9 predictive text program. For example if my word is “Dog” - as an integer list would be [3;6;4]. I already have a pattern matching function to relate…
Solsma Dev
  • 481
  • 6
  • 22
-1
votes
1 answer

PHP T9 Dictionary Implementation using Trie

I want simplified implementation of T9 input method for mobile in PHP i.e. either using Trie or any other simple and best possible solution. Any help will be highly appreciated.
-1
votes
1 answer

Tweaking a T9 Trie in Ruby to append new words

This implementation of a T9 trie generator has a major flaw. It's overwriting previous words added to the tree rather than appending them. I'm not surprised at it, just stumped... class Trie def initialize @root = Hash.new end # do a for…
racknuf
  • 444
  • 3
  • 12
-7
votes
2 answers

How to implement smart searching of contacts by name and number by T9 in iOS?

I am working on a contacts app and I was wondering if it's possible to search contacts like T9 dealers do (letters associated with each number also filters results). So if I press 2 key, it should search for number '2' as well as 'ABC'. Code I am…
NotABot
  • 516
  • 1
  • 8
  • 27
1
2