Arduino Uno

Header

Corner

Full screen

If you want to make your application full screen, first of all, open the manifest file and search for the activity that you want to make appear fullscreen. Edit the file in order to reflect the following change:

        <activity
            android:name="lu.fisch.bouncethings.Main"
            android:label="@string/app_name" 
            android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >

Next set the padding (2) of the topmost element (1) to "0dip". For this you have to create a new dimension (3) and give it a name. After this has been done once, you can select if (4).

application_fullscreen.png