在我的程序中,我有这个问题
编辑文本保留在工具栏的顶部,但我希望编辑文本像正常布局一样保持在工具栏下方。
我将活动主题更改为AppTheme.NoActionBar
因为如果我有正常的AppTheme我无法使用自定义工具栏
activity_definicoes.xml
<?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/content_definicoes" />
<include
layout="@layout/app_bar_maps"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<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/nav_header_maps"
app:menu="@menu/activity_maps_drawer" />
</android.support.v4.widget.DrawerLayout>
content_definicoes.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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">
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:ems="10"
android:inputType="number"
android:text="Raio"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
app_bar_maps.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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/app_bar_maps"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.casimiro.pap.MapsActivity">
<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>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:1)
在DrawerLayout内,添加一个包含屏幕主要内容的视图(隐藏抽屉时的主要布局)和另一个包含导航抽屉内容的视图。
您的布局不仅仅是这些。
改变它,
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include layout="@layout/content_maps" />
<include
layout="@layout/app_bar_maps"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
答案 1 :(得分:1)
根据文件
要使用DrawerLayout,请将主要内容视图定位为第一个具有match_parent宽度和高度且没有layout_gravity&gt;的子视图。在主内容视图后添加抽屉作为子视图,并相应地设置layout_gravity。抽屉通常使用match_parent作为具有固定宽度的高度。
问题1
您应该只将主要内容添加为drawerLayout的第一个子节点。这里有两个孩子
<?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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
layout="@layout/app_bar_maps"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<include layout="@layout/content_maps" />
</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/nav_header_maps"
app:menu="@menu/activity_maps_drawer" />
</android.support.v4.widget.DrawerLayout>
答案 2 :(得分:1)
您不应在android.support.v4.widget.DrawerLayout
中添加两个以上的孩子你可以这样做,
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include android:id="@+id/top"
layout="@layout/content_maps" />
<include
android:layout_below="@id/top"
layout="@layout/app_bar_maps"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</RelativeLayout>
OR,
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include layout="@layout/content_maps" />
<include
layout="@layout/app_bar_maps"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>