私は、アクティビティのボタンがクリックされたときにポップアップするポップアップウィンドウを持っています。ダイアログは画面全体をカバーし、3つのボタンしか含まれていません。ボタンをクリックすると、それに応じて機能します。しかし、ユーザーがボタン以外のポップアップに触れると、ポップアップを消してほしい。私は次のコードを試しました。Androidでポップアップを解除するにはどうすればよいですか?
popupWindow.setOutsideTouchable(true);
popupWindow.showAtLocation(layout, Gravity.FILL, 0, 0);
popupWindow.setTouchInterceptor(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) {
popupWindow.dismiss();
return true;
}
return false;
}
});
しかし、動作しませんでした。また、私はこれを設定:
popupWindow.setFocusable(true);
popupWindow.setTouchable(true);
マイポップアップレイアウトは次のようになります。私は、これらの二つのボタンを除いて、このポップアップ上の任意の場所をクリックした場合
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/popup_element"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#80000000"
android:gravity="center_vertical"
android:orientation="vertical"
android:padding="10px">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="16dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="vertical"
android:padding="10dp">
<ImageButton
android:id="@+id/voiceCall"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_gravity="center|center_horizontal"
android:background="@drawable/round_button"
android:padding="15dp"
android:scaleType="fitCenter"
android:src="@drawable/ic_call_black_24dp" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="Voice Call"
android:textColor="#ffffff"
android:textSize="20dp" />
</LinearLayout>
</LinearLayout>
は、私はそれを却下することにしたいです。 何も私には役に立たない。誰も私にこれを行う方法を提案することはできますか?また、デバイスの戻るボタンをクリックすると、ポップアップが消えてしまいます。あなたがsetTouchInterceptor
を使用し、すべてのその理由
のplsは私が却下()関数を使用するときにそれを得ることはありません、あなたのレイアウトファイル –