繁体   English   中英

Android 布局问题,ImageView 未出现在所需位置(在其他两个视图之间)

[英]Android layout problem, ImageView not appearing in desired place (between two other Views)

我是 android 开发的新手,我正在尝试制作一个类似于此的屏幕(布局):一个微调器,顶部有两个文本字段,左侧下方的缩略图(ImageView)和一个片段容器在下面查看,我将使用它来显示不同的页面。 现在我不是在寻找漂亮的设计,我只是想让 android 像这样显示它。

问题是,即使在 android 工作室的设计选项卡上,缩略图显示在正确的位置,运行时是完全错误的:

这是组件树和布局的 xml 以防万一:

<androidx.coordinatorlayout.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:id="@+id/activity_note"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".NoteActivity">

<com.google.android.material.appbar.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="top"
    android:theme="@style/Theme.NoteKeeper.AppBarOverlay">

    <androidx.appcompat.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/Theme.NoteKeeper.PopupOverlay" />

</com.google.android.material.appbar.AppBarLayout>

<include
    android:id="@+id/include"
    layout="@layout/content_note" />

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="500dp"
    android:layout_gravity="bottom|center">

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center|left"
        android:layout_marginStart="4dp"
        app:layout_constraintBottom_toTopOf="@+id/fragmentContainerView2"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:srcCompat="@tools:sample/avatars" />

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/fragmentContainerView2"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="367dp"
        android:layout_gravity="bottom|center"
        app:defaultNavHost="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:navGraph="@navigation/nav_graph" />
</androidx.constraintlayout.widget.ConstraintLayout>

<com.google.android.material.floatingactionbutton.FloatingActionButton
    android:id="@+id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_marginEnd="@dimen/fab_margin"
    android:layout_marginBottom="16dp"
    app:srcCompat="@android:drawable/ic_menu_camera" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

编辑:

最后,我不得不像这样使用约束布局:

<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:id="@+id/activity_note"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".NoteActivity">


    <com.google.android.material.appbar.AppBarLayout
        android:id="@+id/appBarContentNoteLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="top"
        android:theme="@style/Theme.NoteKeeper.AppBarOverlay"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            app:popupTheme="@style/Theme.NoteKeeper.PopupOverlay" />

    </com.google.android.material.appbar.AppBarLayout>


    <include
        android:id="@+id/include"
        layout="@layout/content_note"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/appBarContentNoteLayout" />

    <ImageView
        android:id="@+id/imageView"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/include"
        tools:srcCompat="@tools:sample/avatars" />

    <androidx.fragment.app.FragmentContainerView
        android:id="@+id/fragmentContainerView"
        android:name="androidx.navigation.fragment.NavHostFragment"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:background="#AC1A1A"
        android:backgroundTint="#C51111"
        app:defaultNavHost="true"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/imageView"
        app:navGraph="@navigation/nav_graph" />

    <com.google.android.material.floatingactionbutton.FloatingActionButton
        android:id="@+id/fab"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="bottom|end"
        android:layout_marginEnd="32dp"
        android:layout_marginBottom="32dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:srcCompat="@android:drawable/ic_menu_camera" />


</androidx.constraintlayout.widget.ConstraintLayout>

添加了色调,以便片段视图显示边框

您的约束在ImageView中是错误的。

尝试摆脱以下行

app:layout_constraintTop_toTopOf="parent"

在您的ImageView中,因为这行代码试图将图像的顶部一直拉到父级的顶部。

Lmk 如果可行的话。 否则,我可以向您发送完整的布局代码片段。

问题是您在 xml 代码中使用 layout_gravity ,该代码在FrameLayout等某些视图组中有效,但在ConstraintLayout中无效。 第二个事实是您不需要使用嵌套的 ConstraontLayouts 并且可以处理您的所有 ui 要求。 因此,对于第一个AppBar ,您可以使用app:layout_constraintTop_toTopOf="parent"并且对于内容注释,您也可以将其限制在 appBar 的底部。 像这样: app:layout_constraintTop_toBottomOf="@+id/appBar"和图片缩略图使用这个: app:layout_constraintTop_toBottomOf="@+id/contentNote"app:layout_constraintStart_toStartOf="parent"和最后一个作为 fragmentContainer你可以使用这个app:layout_constraintTop_toBottomOf="@+id/imageView" 这样,所有这些都将相互约束并且运行良好。 对于与父布局相关的任何其他约束,您也可以添加它们的约束。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM