[android-developers] Re: hiding keyboard after button press

2011-09-10 Thread sblantipodi
to make it work on every phone you should delay the softInputMode only once the keyboard is compeltely visible. something like this really help that much: Timer timer = new Timer(); timer.schedule(new TimerTask() { @Override public void run() { Inpu

[android-developers] Re: hiding keyboard after button press

2011-09-10 Thread sblantipodi
this does not work for me neither. On Sep 10, 1:36 pm, Mark Murphy wrote: > On Fri, Sep 9, 2011 at 11:02 PM, martypantsROK wrote: > > I am using > > >     confirmButton.setOnClickListener(new View.OnClickListener() { > >        public void onClick(View view) { > >         //hide keyboard : > > >