内容布局和导航栏之间存在差距

时间:2017-12-04 09:50:41

标签: android android-layout android-fragments

我已经安装了Google play的应用程序,但是当我尝试隐藏navigationbar时出错了。

更多细节,如打击:

问题列表:

  • Application内容与navigationbar
  • 之间的差距 隐藏Application 时,
  • navigationbar内容无法调整

enter image description here

问题已经存在当我构想时,如下所示:

问题列表:

  • Application内容与navigationbar
  • 之间的差距 隐藏Application 时,
  • navigationbar内容无法调整
  • 系统栏时间超出界限

enter image description here

问题:

  • 如何消除差距?
  • 当我隐藏navigationbar栏时,如何动态调整应用程序内容?
  • 为何超出界限?

1 个答案:

答案 0 :(得分:0)

  <android.support.v7.widget.Toolbar
        android:id="@+id/tool"
        android:layout_width="match_parent"
        android:layout_height="57dp"
        android:background="@color/colorPrimary"
        android:contentInsetEnd="0dp"
        android:contentInsetLeft="0dp"
        android:contentInsetRight="0dp"
        android:contentInsetStart="0dp"
        app:contentInsetEnd="0dp"
        app:contentInsetLeft="0dp"
        app:contentInsetRight="0dp"
        app:contentInsetStart="0dp"
        app:contentInsetStartWithNavigation="0dp">

</Toolbar>