我使用水平滚动视图滚动行中的文本 但文字开始出现在屏幕外
这是我的代码
<ScrollView
ref={(scrollView) => { this._scrollView = scrollView; }}
horizontal={true}
showsHorizontalScrollIndicator={false}
showsVerticalScrollIndicator={false}
automaticallyAdjustContentInsets={false}
directionalLockEnabled={true}
bounces={false}
scrollsToTop={false}
>
这就是发生的事情:
在文本剪切的右侧,我可以从左到右滚动文本... 我需要做什么?
tnx很多
答案 0 :(得分:0)
使用HorizontalScrollView可以水平滚动文本
答案 1 :(得分:0)
我猜其中一个滚动容器宽度大于屏幕宽度,这会导致滚动扩展超出屏幕宽度。
请参阅this rnplay example我所做的哪一项效果很好(也适用于希伯来字母)。