我需要将一个活动内部的片段(以约束布局编写)连接到一个AppBar(以协调器布局编写,在约束布局之外)。问题是该片段从父对象开始,而不是在AppBar下方。我最好的主意是在活动中放置一个准则,以便可以将片段限制为准则,而不是AppBar。问题是我必须对实现该片段的每个活动都使用相同的指南,而我想避免这种情况。基本上所有这些都是为了让我可以像现在一样重用该片段,而无需更改其尺寸以使其适合活动的一部分。这是XML代码的一部分。我只是在寻找更好的解决方案,使该片段真正可重用。
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/item_view_toolbar" />
</android.support.design.widget.AppBarLayout>
<android.support.constraint.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<fragment
android:id="@+id/profile_fragment"
android:name="xxx.contractor.ui.fragment.ProfileFragment_"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/view"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />