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# - SharpSVN - How to get the previous revision? -

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

url - Querystring manipulation of email Address in PHP -