문제

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.

도움이 되었습니까?

해결책 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.

다른 팁

Add theme in the Manifest file with your activity name.

    <activity
        android:name=".ActivityName"
        android:theme="@android:style/Theme.Black.NoTitleBar" >
    </activity>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top