LoginSignup
3
4

More than 5 years have passed since last update.

NavigationBar(下にボタンが並んでるバー)を消す

Posted at

navigation-bar.png

http://developer.android.com/intl/ja/training/system-ui/navigation.html に書いてありました。

サンプルではステータスバーも消すようなコードが書かれていますが、ナビゲーションバーだけを消したいだけなら以下で大丈夫そうです。

View decorView = getWindow().getDecorView();        decorView.setSystemUiVisibility(View.SYSTEM_UI_FLAG_HIDE_NAVIGATION);

但し、上記のコードだと1回どこかをタップなどすると再度ナビゲーションバーが表示されてしまうのでそのあたりの調整は別途行う必要がありそうです。

3
4
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
3
4