GridLayout-垂直/水平约束不一致
作者:互联网
我之所以发布此信息,是因为我无法在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>
除此之外,创建我的应用程序时,我会以编程方式向布局添加视图.
解决方法:
将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,android 来源: https://codeday.me/bug/20191118/2028585.html