gpt4 book ai didi

android - ViewPager wrap_content 内的 ConstraintLayout 不起作用

转载 作者:行者123 更新时间:2023-12-04 10:02:41 26 4
gpt4 key购买 nike

我创建了一个 ViewPager 并将其放在 ConstraintLayout 中:

    <androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/green">

<ViewPager
android:id="@+id/teaser_view_pager"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clipToPadding="false"
android:background="@color/blue"
android:currentPage="@={viewModel.currentItem}"
bind:adapter="@{viewModel.adapter}"
bind:withAnimation="@{viewModel.changeWithAnimation}"
bind:layout_constraintStart_toStartOf="parent"
bind:layout_constraintTop_toTopOf="parent"
bind:layout_constraintEnd_toEndOf="parent"/>

</androidx.constraintlayout.widget.ConstraintLayout>

ViewPager 内部项目的布局是:
    <androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/red">

<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitCenter"
android:background="@color/black"
bind:imageUrl="@{viewModel.imagePath}"
bind:layout_constraintDimensionRatio="3:1"
android:adjustViewBounds="true" />

</androidx.constraintlayout.widget.ConstraintLayout>

如您所见,每个 View 或其父 View 都有不同的背景。如果我运行该应用程序,我会看到:

red background

背景是红色的,这意味着 ViewPager 项目中的 ConstraintLayout 被拉伸(stretch)到屏幕的整个高度,尽管 wrap_content .
任何人都知道,如何将项目缩小到内部图像的大小?

P.S.:我在这里使用 ConstraintLayout,因为我需要将图像尺寸保持在纵横比“3:1”

最佳答案

将所有约束设置为 parent然后使用 0dp在高度或宽度而不是 `wrap_content'

关于android - ViewPager wrap_content 内的 ConstraintLayout 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61751141/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com