我正在尝试在我的应用程序中获取 UI 更改(特别是显示或隐藏的软键盘),为此我使用了自定义列表视图,我将
protected void onDraw(Canvas canvas) {
// TODO Auto-generated method stub
super.onDraw(canvas);
InputMethodManager im = (InputMethodManager)c
.getSystemService(Context.INPUT_METHOD_SERVICE);
if (im.isActive()) {
Log.d("Redraw Canvas", "Key board is active");
} else {
Log.d("Redraw Canvas", "Key board is not active");
}
}
但这里需要上下文,问题是我如何在这里使用上下文?