我发现API 19和API 23/24之间关于点击/触摸事件的行为不匹配。下面的示例代码包含用于创建弹出窗口的按钮,以及用于关闭它的新窗口中的按钮。在API 19的设备上测试它按预期工作,如果我点击弹出窗口的按钮,窗口关闭,但是如果我点击其他任何地方,没有任何反应。 但是,使用API 23或24运行相同的代码,如果单击弹出窗口旁边的,它也会消失,而不会执行我的事件处理程序。
有人可以帮我解释为什么会这样,以及我如何确保行为与我在API 19上看到的一致? 或者,建议一些解决问题的方法?
MainActivity.java
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void openPopup(View v) {
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.popup, null, false);
final PopupWindow pw = new PopupWindow(layout);
pw.setWidth(LinearLayout.LayoutParams.WRAP_CONTENT);
pw.setHeight(LinearLayout.LayoutParams.WRAP_CONTENT);
pw.setFocusable(true);
pw.showAtLocation(findViewById(R.id.activity_main), Gravity.CENTER, 0, 0);
Button b = (Button) layout.findViewById(R.id.popup_button);
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
pw.dismiss();
}
});
}
}
activity_main.xml中
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.danielsh.games.test.MainActivity"
android:id="@+id/activity_main">
<android.support.v7.widget.AppCompatButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Open popup"
android:onClick="openPopup"/>
</RelativeLayout>
popup.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/colorAccent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Some text"
android:textColor="@color/colorPrimaryDark"
android:textSize="24sp"/>
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Close"
android:id="@+id/popup_button"/>
</LinearLayout>
答案 0 :(得分:2)
如果您想在解雇窗口时进行常规处理,请尝试使用此项:https://developer.android.com/reference/android/widget/PopupWindow.OnDismissListener.html
pw.setOnDismissListener(new PopupWindow.OnDismissListener() {
// Place your handler code here
});
如果用户不想在弹出窗口外触摸窗口,那么如果您不想关闭窗口(注意:在PopupWindow中,默认情况下这些是):
pw.setTouchable(true);
pw.setFocusable(false);
pw.setOutsideTouchable(false);
参考:https://developer.android.com/reference/android/widget/PopupWindow.html#setOutsideTouchable(boolean)
这仅适用于可触摸但不可聚焦的弹出窗口,这意味着窗口外的触摸将被传递到窗口后面。
编辑好的,我可以重现此问题,我可以确认,如果您删除行pw.setFocusable(true);
,您的代码将按预期工作。
答案 1 :(得分:-1)
也许这意味着你的PopupWindow在api19 +中是可取消的()而不是api19
然后只对您想要的行为使用cancelable(false)或cancelable(true)
编辑:
它有setOutsideTouchable()你可以试试