ScrollView not Scrolling - Android

前端 未结 7 1218
孤独总比滥情好
孤独总比滥情好 2020-12-06 02:13

I can\'t understand why this is happening. I am unable to scroll my scrollview. It has a textView, an imageview and few linear layouts inside of it. When I replace the image

相关标签:
7条回答
  • 2020-12-06 02:40
    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true" >
    

    Remove android:fillViewport="true" from above element

    0 讨论(0)
提交回复
热议问题