ScrollView Layout does not fill the whole screen

后端 未结 5 2041
一整个雨季
一整个雨季 2021-01-31 06:54

I got an Activity with two Fragments (one list one normal). And the normal Fragment inflates a Scrollview containing a

5条回答
  •  醉酒成梦
    2021-01-31 07:30

    inflater.inflate(R.layout.menu_content_main, container);
    

    should be

    inflater.inflate(R.layout.menu_content_main, container, false);
    

提交回复
热议问题