Scrollview is behind ActionBar Android

How do I prevent the ScrollView from scrolling behind the ActionBar? I want the top of the text to be just below the ActionBar.

enter image description here

+3


source to share


2 answers


Add this to your ScrollView xml



android:layout_marginTop="?android:attr/actionBarSize"

      

+6


source


If you have android:layout_gravity="center"

in your ScrollView or below you can try to remove it



+3


source







All Articles