gpt4 book ai didi

android - GridLayout - 垂直/水平约束不一致

转载 作者:太空宇宙 更新时间:2023-11-03 13:48:37 25 4
gpt4 key购买 nike

我发布这个是因为我无法在 SO 和网络的其余部分找到我正在寻找的确切内容。我看了看 this ,但我不确定如何解决该问题。

当我在我的应用程序中使用 GridLayout 时出现了这个问题,每当我旋转屏幕时,我都会看到类似这样的输出:

在横向模式下:

06-23 21:41:25.627 10222-10222/in.cryf.yaca D/android.widget.GridLayout: vertical constraints: y1-y0>=112, y2-y1>=112, y3-y2>=112, y4-y3>=112, y4-y0<=311 are inconsistent; permanently removing: y4-y0<=311.

在纵向模式下:

06-23 21:41:28.124 10222-10222/in.cryf.yaca D/android.widget.GridLayout: horizontal constraints: x1-x0>=192, x2-x1>=192, x3-x2>=192, x4-x3>=192, x4-x0<=704 are inconsistent; permanently removing: x4-x0<=704.

虽然它不会影响我的应用程序的运行,但从我上面发布的 SO 链接来看,它似乎可能存在性能问题。

我的 XML 中的 GridLayout:

<GridLayout
android:id="@+id/button_grid"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</GridLayout>

除此之外,我在创建我的应用程序时以编程方式向布局添加 View 。

最佳答案

将我的 GridLayout 包含在 ScrollView 中后,消息不再出现。

<ScrollView
android:layout_below="@id/output"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content">

<GridLayout
android:id="@+id/button_grid"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</GridLayout >


</HorizontalScrollView>

</ScrollView>

关于android - GridLayout - 垂直/水平约束不一致,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37997670/

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