ScrollView 没有放在 ToolBar 下面

ScrollView isn't placed below ToolBar

我遇到了以下问题:我的 activity 中的 ScrollView 应该放在 ToolBar 下面。这是 activity:

的布局
<?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"
    tools:context=".SongLyricsActivity">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#0000FF"
        tools:ignore="MissingConstraints" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_constraintTop_toBottomOf="@id/toolbar"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        android:layout_marginTop="16dp">

        <TextView
            android:id="@+id/lyrics_textview"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

    </ScrollView>



</android.support.constraint.ConstraintLayout>

但是当我 运行 应用程序时,我看到了这个:

我不明白,为什么会这样,因为我把它放在工具栏下面,所以,怎么回事?

你可以试试:

 <LinearLayout>
      vertical
      <RelativeLayout>
           <Toolbar>
               someID
               parent top
               parent left
           <Scrollview>
               below someID
               parent left

我使用 marginTop 参数(等于工具栏高度)解决了这个问题,如下所示:

 <ScrollView
    android:id="@+id/activity_show_scroll_view"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="?attr/actionBarSize"
    android:background="@color/transparent_background"
    >

这适用于我的应用程序。

发生这种情况是因为您的滚动视图高度是 match_parent 而不是 0dp - 因此您的滚动视图将不遵守您的限制并会遍布整个屏幕。

请注意,您正在使用 tools:ignore="MissingConstraints" 并且工具属性只会影响预览,因此您将以不同于预览的方式查看布局。

此外,您缺少一些约束 - app:layout_constraintTop_toTopOf="parent"

现在有了这个约束,它应该可以工作了:

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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:orientation="vertical" android:layout_width="match_parent"
  android:layout_height="match_parent">

<androidx.appcompat.widget.Toolbar
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#0000FF"
    app:layout_constraintTop_toTopOf="parent"
    tools:layout_editor_absoluteX="0dp" />

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="0dp"
    app:layout_constraintTop_toBottomOf="@id/toolbar"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintEnd_toEndOf="parent"
    android:layout_marginTop="16dp">

    <TextView
        android:id="@+id/lyrics_textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

</ScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>