goodev / ketai

Automatically exported from code.google.com/p/ketai
1 stars 0 forks source link

Keyboard can be displayed and nothing more #17

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
  The keyboard can appear on the screen. That's good.
  But how we can input the symbol code?
  The code below don't work nor on an emulator, neither on the phone.
  It says: Sorry! The application UI (process processing.test.ui) has stopped unexpectedly...

  If Processing and Android are so unstable, why you still programming them?!
  People waste a lot of time, the Book contains too many errors!
(Working With A SQLiteDatabase - one time you write id ("id INTEGER PRIMARY KEY 
AUTOINCREMENT"), next time you write _id. After that you are saying that "all 
the sketches were tested..")

void setup()
{
  ...
    //register for key events(keyPressed currently Broken)
    registerMethod ("KeyEvent", this); 
  ...
}

void draw()
{ ...
   if (key == 'd')       text("Keyboard", 50, 60); 
  ...
}

void mousePressed ()
{
  if (mouseY < 100 && mouseX < width/3)
  {
      KetaiKeyboard.toggle(this);
  }

}

And how keyboard plan to work in the Wi-Fi Direct Sketch?
Please, stop headaches for users!

Original issue reported on code.google.com by longtolik@gmail.com on 6 Mar 2013 at 12:28

GoogleCodeExporter commented 9 years ago
Resolved!
Now I can read symbols from the screen keyboard!
Thanks & sorry for the words about headaches (but I spend time fighting with 
the code).
Now I'm able to make a real database!

Original comment by longtolik@gmail.com on 6 Mar 2013 at 12:49

GoogleCodeExporter commented 9 years ago

Original comment by jduran9....@gmail.com on 19 Apr 2013 at 6:54