You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If we set text using textView.setText(someLongTextHere) immediately in onCreate - everything works fine. But if we do the same with a delay (2 sec f.x.) text gonna be shown, but show more not working. requestLayout and invalidate do not help.
R.string.temp is a long string. tv1.setText(getString(R.string.temp)) works fine, and viewmore gonna be shown.
If we set text using
textView.setText(someLongTextHere)
immediately inonCreate
- everything works fine. But if we do the same with a delay (2 sec f.x.) text gonna be shown, but show more not working.requestLayout
andinvalidate
do not help.R.string.temp
is a long string.tv1.setText(getString(R.string.temp))
works fine, and viewmore gonna be shown.But if we do it with a delay:
viewmore not shown.
Seems like
onGlobalLayoutLineEndIndex
is the reasonThe text was updated successfully, but these errors were encountered: