android 布局未占用整个屏幕

yh2wf1be  于 2023-06-20  发布在  Android
关注(0)|答案(3)|浏览(107)

我试图在我的styles.xml中使用<item name="android:windowTranslucentNavigation">true</item>并通过将android:fitsSystemWindows="true"添加到我的布局中来在我的导航栏下呈现我的activity_main。出于某种原因,布局不是使用所有可用空间,而是将其自身居中到可用空间中:
[![在此处输入图像描述][1]][1]
我的main_activity

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.example.smc_kr.gachi_soundboardv2.MainActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>

我的content_main

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/content_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:fitsSystemWindows="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.example.smc_kr.gachi_soundboardv2.MainActivity"
    tools:showIn="@layout/activity_main">

    <GridView
        android:layout_width="fill_parent"
        android:layout_height="match_parent"
        android:id="@+id/gridview"
        android:numColumns="auto_fit"
        android:verticalSpacing="0dp"
        android:horizontalSpacing="0dp"
        android:gravity="center"
        android:stretchMode="columnWidth"
        android:columnWidth="100dp">
    </GridView>
</RelativeLayout>

第二十一章:

<resources>

    <style name="AppTheme.NoActionBar">
        <item name="windowActionBar">false</item>
        <item name="windowNoTitle">true</item>
        <item name="android:windowDrawsSystemBarBackgrounds">true</item>
        <item name="android:statusBarColor">@android:color/transparent</item>
        <item name="android:windowTranslucentNavigation">true</item>
    </style>
</resources>

所有尺寸值均设置为0 dp。我错过了什么吗?

hpcdzsge

hpcdzsge1#

尝试删除content_main.xml中的所有填充

62lalag4

62lalag42#

要么从网格视图中删除android:gravity=“center”,要么将其置于顶部

kcugc4gi

kcugc4gi3#

我通过将content_main中的RelativeLayout替换为ScrimInsetsFrameLayout解决了这个问题。

相关问题