【Android共通】アプリケーションのタイトルバーを消す

Android

アプリケーションのタイトルバーを消す

AndroidManifest.xml

<activity
    android:name=".Mp4Activity"
    android:theme="@style/Theme.AppCompat.Light.NoActionBar.FullScreen" />

メニューバー アクションバー表示

themes.xml

  <style name="Base.Theme.Ad_Rfid_main" parent="android:Theme.Holo.Light.DarkActionBar">

Botttomナビゲーションの上の余白を消す

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingTop="?attr/actionBarSize"> <---これを消す

コメント