我正在使用加載微調器動畫和一組項目。如果你點擊它外面,它應該消失。有人知道怎麼做這個嗎?在Android中單擊它之外時隱藏加載微調器
我已經試過這一點。它與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;
}
感謝。
看看http://stackoverflow.com/questions/8384067/how-to-dismiss-the-dialog-with-click-on-outside-of-the-dialog/8384124#8384124 – user370305
我已經檢查過這個鏈接。但是可以進行對話而不是微調。 –
你必須檢查你的活動窗口(Spinner之外)的觸摸。我在那個答案中提到了。 – user370305