gpt4 book ai didi

android - ConstraintLayout中如何使用ViewStub?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:52:55 28 4
gpt4 key购买 nike

似乎在 ConstraintLayout 中膨胀 ViewStub 时,生成的 View 已失去所有约束。我想我们可以使用 ConstraintSet 定义膨胀 View 的约束,但这种做法违背了 ViewStub 的目的。

有什么好的方法吗?

最佳答案

有一个简单的解决方案:

在您的 ViewStub 中,让 inflatedId 属性与 id 相同

像这样:

<ViewStub
android:id="@+id/pocket_view"
android:inflatedId="@+id/pocket_view"
android:layout="@layout/game_pocket_view"
android:layout_width="@dimen/game_pocket_max_width"
android:layout_height="@dimen/game_pocket_max_height"
app:layout_constraintLeft_toLeftOf="@id/avatar_view"
app:layout_constraintRight_toRightOf="@id/avatar_view"
app:layout_constraintTop_toTopOf="@id/avatar_view"
app:layout_constraintBottom_toBottomOf="@id/avatar_view"
/>

关于android - ConstraintLayout中如何使用ViewStub?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47164398/

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