LoginSignup
2
0

More than 5 years have passed since last update.

PopupWindowをBackKeyで消去!?

Posted at

PopupWindowをBackKeyで消去できるようにしよう!!

以下コード

galapagos.js
popup=new android.widget.PopupWindow(view,1920,1080);
popup.setFocusable(true);
popup.setOnDismissListener(function(){
  // 消えたときの処理
  print("消去しました");
});
popup.showAtLocation(ctx.getWindow().getDecorView(),android.view.Gravity.LEFT|android.view.Gravity.TOP,0,0);
popup.getContentView().setSystemUiVisibility(android.view.View.SYSTEM_UI_FLAG_IMMERSIVE_STICKY|android.view.View.SYSTEM_UI_FLAG_FULLSCREEN|android.view.View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);

追記

setSystemUiVisibilityでナビゲーションバーを隠しているので、表示させたい場合はこの部分を消してください

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0