Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GridLayout spitting out "inconsistent constraint" debug-level logs

I've been using GridLayout for a few weeks now and I've noticed that when I call

gridLayout.requestLayout()

it spits out the following debug-level message in LogCat:

D/android.widget.GridLayout(14048): horizontal constraints: x5 - x0 > 1115, x5 - x4 < 221, x4 - x3 < 221, x3 - x2 < 221, x2 - x1 < 221, x1 - x0 < 221 are inconsistent; permanently removing: x5 - x4 < 221. 

I've looked through the source of GridLayout to try and find out the possible reason as to why the "contraints are inconsistent", but I haven't been able to figure it out.

The fact that these messages are appearing - is this something that I should be concerned about? I don't see any issues with the way things are being laid out. I have a GridLayout in Fragments that are loaded as the pages in a ViewPager so I as the user scrolls between the pages I see the above output in LogCat multiple times.

like image 796
mdupls Avatar asked May 02 '12 20:05

mdupls


3 Answers

From the GridLayout source:

Bellman-Ford variant - modified to reduce typical running time from O(N^2) to O(N)

GridLayout converts its requirements into a system of linear constraints of the form:

x[i] - x[j] < a[k]

Where the x[i] are variables and the a[k] are constants.

For example, if the variables were instead labeled x, y, z we might have:

x - y < 17
y - z < 23
z - x < 42

This is a special case of the Linear Programming problem that is, in turn, equivalent to the single-source shortest paths problem on a digraph, for which the O(n^2) Bellman-Ford algorithm the most commonly used general solution.

It has a solve method that is using linear programming to guarantee the consistency of the constraints it has to satisfy, given its configuration. You can probably improve your layout performance if you figure out which configuration is associated with the constraint x5 - x4 < 221 and remove it. Then the solver won't have to solve that it can't be satisfied and remove it itself.

like image 147
Dandre Allison Avatar answered Nov 14 '22 23:11

Dandre Allison


I had the same issue and I found that I missed to add XML namespace. Corrected it in this way:

<android.support.v7.widget.GridLayout 
     xmlns:grid="http://schemas.android.com/apk/res-auto"
     xmlns:android="http://schemas.android.com/apk/res/android">
...
</android.support.v7.widget.GridLayout>

Then changed prefix of attributes used by compatibility GridLayout with XML namespace too:

<ImageButton android:id="@+id/btnSentence"
    grid:layout_row="0"
    grid:layout_column="0"
    ...
/>

and it helped... Hope it helps you too.

like image 39
Tomáš Hubálek Avatar answered Nov 14 '22 22:11

Tomáš Hubálek


I made the issue go away by using wrap_content for the GridLayout's width instead of match_parent, I guess it is one less constraint for it to worry about.

like image 33
Daniel Wilson Avatar answered Nov 14 '22 22:11

Daniel Wilson