java - Sqlite and Window Already Focused -


i keep getting this:

07-02 14:50:23.597: warn/inputmanagerservice(1496): window focused, ignoring focus gain of: com.android.internal.view.iinputmethodclient$stub$proxy@46609b50

this code executed right before hand:

db.delete(clicked); toast.maketext(getbasecontext(), "deleted row: " + clicked, toast.length_short).show(); log.i("contextmenu", "[mainact.class] clicked delete. deleting: " + clicked); update(); return true;  public void delete(int row){     open();     this.db.delete(table_name, "id = " + row, null); }  public void open(){     if(!db.isopen()){         sqlitedatabase.opendatabase(db.getpath(), null, sqlitedatabase.open_readwrite);     } } 

i have been trying fix few days now.

how can solved?

this warning has nothing code have listed. has soft keyboard. warning, not error, unless experiencing more symptoms message appearing, ignore it.


Comments

Popular posts from this blog

c++ - Is it possible to compile a VST on linux? -

c# - SharpSVN - How to get the previous revision? -

php cli reading files and how to fix it? -