我想使我的应用程序使用约束布局,但侧面导航菜单仅可与DrawerLayout一起使用,因此现在我无法将元素放置在想要的位置。
即使图像设置为“ wrap_content”,它仍是全屏显示,并且在我列表的前面,我希望它在列表上方。
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<ListView
android:id="@+id/lvLista"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@id/titleDates"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="#B5D5B5"
app:layout_constraintTop_toBottomOf="@+id/titleDates" />
<ImageView
android:id="@+id/titleDates"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
app:srcCompat="@drawable/dias_de_coleta" />
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_menu" />
</android.support.v4.widget.DrawerLayout>
答案 0 :(得分:0)
由于DrawerLayout不支持任何视图定位约束,因此必须将ListView和ImageView放置在它自己的ViewGroup中。您可以将其视为FrameLayout。
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true">
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ImageView
android:id="@+id/titleDates"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf=parent"
app:srcCompat="@drawable/dias_de_coleta" />
<ListView
android:id="@+id/lvLista"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintTop_toBottomOf="@+id/titleDates"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:background="#B5D5B5" />
</android.support.constraint.ConstraintLayout>
<android.support.design.widget.NavigationView
android:id="@+id/nav_view"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header"
app:menu="@menu/drawer_menu" />
</android.support.v4.widget.DrawerLayout>
另外: layout_alignParentTop 和 layout_below 仅在容器为RelativeLayout时有效。
layout_constraintTop_toBottomOf 仅在容器为ConstraintLayout时有效。
如果您的视图不是这些视图组的子视图,则使用它们毫无用处。
答案 1 :(得分:0)
<android.support.v4.widget.DrawerLayout
<android.support.constraint.ConstraintLayout
<ImageView/>
<ListView/>
</android.support.constraint.ConstraintLayout>
<android.support.design.widget.NavigationView/>
</android.support.v4.widget.DrawerLayout>