fill_parent is not filling entire screen in LinearLayout

前端 未结 1 1233
天命终不由人
天命终不由人 2021-01-21 23:11

I tried to search for this answer and the closest I got to an answer was to add android:resizable=\"true\", which is deprecated. I apologize if this question has been answered b

相关标签:
1条回答
  • 2021-01-22 00:01

    Add below code in menifest after application tag

    <supports-screens android:resizeable="true"
                          android:smallScreens="true" 
                          android:normalScreens="true" 
                          android:largeScreens="true"
    
                          android:anyDensity="true" />
    
    0 讨论(0)
提交回复
热议问题