sundarPinyinText icon indicating copy to clipboard operation
sundarPinyinText copied to clipboard

当NestedScrollView嵌套PinyinText时,如果设置PinyinText的高度为wrap_content,那么setPinyinText时无高度

Open wkp111 opened this issue 6 years ago • 2 comments

当NestedScrollView嵌套PinyinText时,如果设置PinyinText的高度为wrap_content,那么setPinyinText时无高度

wkp111 avatar Mar 14 '18 08:03 wkp111

if (modeHeight != MeasureSpec.EXACTLY) { measuredHeight = baseLine + mPinyinHeight + mPinyinTextSpacing + mTextHeight + mTextHeight / 4; if (measuredHeight > sizeHeight) { measuredHeight = sizeHeight; } } sizeHeight <= 0 ,这有问题

wkp111 avatar Mar 14 '18 08:03 wkp111

在NestedScrollView 中添加android:fillViewport="true"就好了

SundarFung avatar Apr 11 '19 03:04 SundarFung