1

我的活动中有 1 个编辑文本,当我按下按钮时软键盘打开并且在硬件后退按钮上软键盘关闭并且光标应该可见消失了..我已经实现如下..请帮帮我..

public void onBackPressed()
    {


            brand.setCursorVisible(false);
            brand.clearFocus();

        finish();

    }

}
4

1 回答 1

0

试试这个方法

public void onBackPressed()
    {

            if(brand.isCursorVisible()){
                brand.setCursorVisible(false);
                brand.clearFocus();
            }else{
                super.onBackPressed();
            }

    }
于 2013-08-31T11:25:43.287 回答