我正在创建一个android应用,并且刚刚将“导航”抽屉添加到了我的一项活动中。我已经成功添加了它,但是现在它与页面的内容重叠了。作业文本和其余文本应在ActionBar下方。
我尝试在作业文本的顶部添加边距,这确实按我的意愿将其向下推。有更好的方法将其向下移动吗?

android - 顶级ActionBar涵盖页面内容-LMLPHP

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout 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/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:openDrawer="start">

    <include
        layout="@layout/app_bar_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <LinearLayout 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/jobListPage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="top"
        tools:context="com.kitkat.crossroads.Jobs.JobsActivity">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">


            <TextView
                android:id="@+id/textView5"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Jobs"
                android:fontFamily="@font/bebasneueregular"
                android:textSize="30dp"
                android:textAlignment="center"
                tools:layout_editor_absoluteX="163dp"
                tools:layout_editor_absoluteY="16dp" />

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">
                <TextView
                    android:id="@+id/textName"
                    android:layout_width="125dp"
                    android:layout_height="50dp"
                    android:layout_marginLeft="60dp"
                    android:fontFamily="@font/bebasneueregular"
                    android:gravity="center_vertical"
                    android:text="Job Name"
                    android:textSize="15dp"
                    android:textColor="#FF000000"
                    android:visibility="visible" />

                <TextView
                    android:id="@+id/textFrom"
                    android:layout_width="100dp"
                    android:layout_height="50dp"
                    android:fontFamily="@font/bebasneueregular"
                    android:layout_alignParentTop="true"
                    android:layout_toEndOf="@+id/textName"
                    android:gravity="center_vertical"
                    android:text="From"
                    android:textSize="15dp"
                    android:textColor="#FF000000"
                    android:visibility="visible" />

                <TextView
                    android:id="@+id/textTo"
                    android:layout_width="100dp"
                    android:layout_height="50dp"
                    android:fontFamily="@font/bebasneueregular"
                    android:textSize="15dp"
                    android:layout_alignParentEnd="true"
                    android:layout_alignParentTop="true"
                    android:gravity="center_vertical"
                    android:text="To"
                    android:textColor="#FF000000"
                    android:visibility="visible" />


            </LinearLayout>


            <ExpandableListView
                android:id="@+id/jobListView12345"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />


        </LinearLayout>

    </LinearLayout>

    <android.support.design.widget.NavigationView
        android:id="@+id/nav_view"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:fitsSystemWindows="true"
        app:headerLayout="@layout/navigation_header"
        app:menu="@menu/activity_main_drawer" />

</android.support.v4.widget.DrawerLayout>

最佳答案

因为您在Linearlayout中分配gravity="top"以便发生

因此,您删除此gravity,请参见下面的代码:

<LinearLayout 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/jobListPage"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        //remove gravity="top" from hear
        tools:context="com.kitkat.crossroads.Jobs.JobsActivity">


如果您的问题无法解决,那么您可以在内部Linearlayout中使用android:layout_marginTop="20dp"

见下面的代码

<LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_marginTop="20dp"
            android:orientation="vertical">


不要在LinearLayout中包含。因为它更改了您的操作栏,所以您只能删除gravity并分配margin top

10-08 18:51