我想要一个视图锚定在AppBarLayout和布局之间。我只在Android Studio编辑器上获得此行为,但在真实设备上是这样的:
我真的很困惑。我的代码是:
<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"
tools:context="view.activity.MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/bar_layout"
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" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginStart="84dp"
android:layout_marginTop="@dimen/activity_vertical_margin">
<!--views on toolbar-->
</RelativeLayout>
</android.support.design.widget.AppBarLayout>
<include layout="@layout/activity_home_content" />
<RelativeLayout
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:background="@drawable/circle_accent"
app:layout_anchor="@+id/whole_layout"
app:layout_anchorGravity="top|start">
<!--img view-->
</RelativeLayout>
</android.support.design.widget.CoordinatorLayout>
和' activity_home_content '
<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/whole_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="view.activity.MainActivity"
tools:showIn="@layout/activity_home_toolbar">
<!--some other views-->
</LinearLayout>
答案 0 :(得分:3)
试过了。正如我在评论中提到的,您的whole_layout
是LinearLayout
,其高度为0dp。锚定到此LinearLayout
的任何元素都将默认获得0dp的高程(与您要锚定的视图相同)。这意味着RelativeLayout
的海拔高度为0dp。
AppBarLayout
的海拔高度为4dp,因此默认情况下RelativeLayout
将始终位于其下方。
修复
给出大于或等于4的相对布局的高程。这将解决您的问题,但RelativeLayout
现在也会投射阴影。
以下是RelativeLayout
<RelativeLayout
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_marginStart="@dimen/activity_horizontal_margin"
android:background="@drawable/circle_accent"
app:layout_anchor="@+id/whole_layout"
app:layout_anchorGravity="top|start"
android:elevation="4dp">
<!--img view-->
</RelativeLayout>