7

我正在使用带有一组项目的加载微调器动画。如果您单击它的外部,那么它应该会消失。有人知道怎么做这个吗?

微调器

我试过这个。它正在与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;
}

提前致谢。

4

2 回答 2

1

我个人所做的是创建一个自定义来做同样的事情AlertDialogsetSingleChoiceItems()然后我用setCanceledOnTouchOutside().

于 2012-11-27T13:17:08.807 回答
0

Dialog 链接的解决方案

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

当用户单击单选按钮时,dialog.dismiss()接下来调用并执行必要的代码

于 2012-11-21T08:11:28.897 回答