Android: ScrollView Issue

后端 未结 2 806
有刺的猬
有刺的猬 2020-12-08 04:26

I have had a number of problems with ScrollViews. Recently I tried to create a LinearView which content exceeds the screen size so I created the new layout with parent eleme

2条回答
  •  天命终不由人
    2020-12-08 05:09

    Your EditText should have a height of wrap_content. fill_parent has no meaning in a ScrollView. If you want the EditText to fill your ScrollView when it's content is smaller than the ScrollView, use android:fillViewport="true" on the ScrollView.

提交回复
热议问题