最終更新:2015-01-14 (水) 19:15:49 (3383d)  

Android/全画面表示
Top / Android / 全画面表示

メモ

  • API level 16では、View#setSystemUiVisibility?()を使うことで、フルスクリーン表示にできる

Activityのタイトルバー

AndroidManifest.xml

  • <activity android:name=".HelloAndroid"
             android:label="@string/app_name"
             android:theme="@android:style/Theme.NoTitleBar">

Android/ステータスバー

WindowManager.LayoutParams.FLAG_FULLSCREEN

AndroidManifest.xml

  • android:theme="@android:style/Theme.NoTitleBar.Fullscreen">