Android中ScrollView中嵌套ListView或GridView时在开始进入界面时总是显示中间位置,开头的位置显示不出来。这种情况下只需要在ScrollView的父控件中添加以下两行代码即可。
1 android:focusableInTouchMode="true" 2 android:focusable="true"
还有一个问题:在ScrollView嵌套ListView或GridView时仅仅显示一行或两行,ListView或GridView无法显示全部数据。这个时候只要在ScrollView中添加
android:fillViewport="true"
即可解决这个问题。