Android Activity in Full screen

0

When creating a new Activity There are spaces that the button does not occupy, I need those spaces to be occupied.

    
asked by Diego 15.02.2017 в 21:38
source

1 answer

0

In the root layout remove the padding:

android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
    
answered by 16.02.2017 / 01:39
source