在Android中单击外部时隐藏加载微调器

时间:2012-11-08 09:31:56

标签: android spinner

我正在使用带有一组项目的加载微调器动画。如果你点击它外面,它应该消失。有人知道怎么做吗?

Spinner

我试过这个。它正在与EditText合作。但它不适用于Spinner

@Override
public boolean dispatchTouchEvent(MotionEvent event) {
    View view = getCurrentFocus();
    boolean ret = super.dispatchTouchEvent(event);

    if (view instanceof EditText||view instanceof Spinner) {
        View w = getCurrentFocus();
        int scrcoords[] = new int[2];
        w.getLocationOnScreen(scrcoords);
        float x = event.getRawX() + w.getLeft() - scrcoords[0];
        float y = event.getRawY() + w.getTop() - scrcoords[1];

        if (event.getAction() == MotionEvent.ACTION_UP 
 && (x < w.getLeft() || x >= w.getRight() 
 || y < w.getTop() || y > w.getBottom()) ) { 
            InputMethodManager imm = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
            imm.hideSoftInputFromWindow(getWindow().getCurrentFocus().getWindowToken(), 0);
        }
    }
 return ret;
}

先谢谢。

2 个答案:

答案 0 :(得分:1)

我个人所做的是使用AlertDialog创建自定义setSingleChoiceItems()来执行相同的操作。比我使用setCanceledOnTouchOutside()

答案 1 :(得分:0)

Dialog link

有一个解决方案

那么为什么不尝试创建一个看起来像微调器的自定义对话框(simple example)?使用单选按钮为对话框创建布局文件。

当用户点击单选按钮时,请拨打dialog.dismiss()并在下一步执行必要的代码