maxLineHeight should not be -1. maxLines:1 lineCount:1

Logcat里一直报这个警告

StaticLayout         W  maxLineHeight should not be -1.  maxLines:1 lineCount:1

原因是TextView设置了

    android:maxLines="1"
    android:ellipsize="end"

解决办法,修改成

    android:singleLine="true"
    android:ellipsize="end"

你可能感兴趣的:(android)