Question

I am developing Android application using eclipse. I have noticed one thing and that is the app is not showing on full screen. There are blank black spaces around the borders of the application in Android TV Box. I have tried every full screen property(Match_Parent, fill_parent) but still not successful.

Was it helpful?

Solution 2

For those who has same question about Android TV box, the answer is to go in settings and then Display. It contains the option of Display Position where you can set the zoom in and zoom out properties to stretch or compress your screen display.

OTHER TIPS

Add theme in the Manifest file with your activity name.

    <activity
        android:name=".ActivityName"
        android:theme="@android:style/Theme.Black.NoTitleBar" >
    </activity>
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top