i want to know the status of the soft key board like if displayed true or false. i am doing the following but it always returns false. please let me know the mistake in my code and help me for better solution...i want to slide up the layout with the key board with its visibility.
i tried all the other possibilities but was not able to do it hence trying a different method. please help me guys
I m creating a sub class
public class DetectsSoftKeyboard extends RelativeLayout {
public DetectsSoftKeyboard(Context context, AttributeSet attrs) {
super(context, attrs);
}
public interface Listener {
public void onSoftKeyboardShown(boolean isShowing);
}
private Listener listener;
public void setListener(Listener listener) {
this.listener = listener;
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
int height = MeasureSpec.getSize(heightMeasureSpec);
Activity activity = (Activity)getContext();
Rect rect = new Rect();
activity.getWindow().getDecorView().getWindowVisibleDisplayFrame(rect);
int statusBarHeight = rect.top;
int screenHeight = activity.getWindowManager().getDefaultDisplay().getHeight();
int diff = (screenHeight - statusBarHeight) - height;
if (listener != null) {
listener.onSoftKeyboardShown(diff>128); // assume all soft keyboards are at least 128 pixels high
}
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
and then implementing this sub class in the main activity as
public class myactivity extends Activity implements Listener{
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mContext = this;
DetectsSoftKeyboard deskeyboard = (DetectsSoftKeyboard) findViewById(R.id.rellayoutlogin);
deskeyboard.setListener(this);
}
@Override
public void onSoftKeyboardShown(boolean isShowing) {
// TODO Auto-generated method stub
Toast.makeText(getApplicationContext(), "is showing"+isShowing, Toast.LENGTH_SHORT).show();
}
here isshwing is always returing false...
