我在ScrollView中有一个NestedScrollView,它具有相对布局作为父视图。现在,当我在Android 6.0或API23上运行我的应用程序时,它运行顺畅,NestedScrollView也在滚动。但是,当我在Android 4.2.2或API17上运行我的应用程序时,除了NestedScrollView之外,一切正常。我不知道为什么会这样。我经历了其他SO问题,但没有人处理我遇到的那种问题..
这是我的布局: -
<ScrollView>
<Other Views/>
<Other Views/>
<NestetScrollView>
<CustomTextView/>
</NestetScrollView>
</ScrollView>
感谢任何帮助。
答案 0 :(得分:0)
尝试将其更改为此格式并查看其是否有效:
<NestetScrollView>
<Other Views/>
<Other Views/>
<ScrollView>
<CustomTextView/>
</ScrollView>
</NestetScrollView>