Why does my android activity always start scrolled to the bottom?

前端 未结 11 925
萌比男神i
萌比男神i 2020-12-22 20:56

Whenever I start this activity, it always starts bottomed out--scrolled all the way to the bottom. I am not doing anything weird in the activity OnCreate (or anywhere for th

11条回答
  •  情深已故
    2020-12-22 21:23

    For Xamarin Android development, if you want to do @Graeme solution then:

    // Set Focus to ScrollView
    ScrollView scrollView = (ScrollView)FindViewById(Resource.Id.scrollView);
    scrollView.FocusableInTouchMode = true;
    scrollView.DescendantFocusability = Android.Views.DescendantFocusability.BeforeDescendants;
    

提交回复
热议问题