2

以下简单布局在 Android 手机上显示全屏,但在 Google TV 上不显示,它仅显示在电视屏幕的一部分(上半部分和中间三分之一)上,其余部分有某种壁纸(只是说万一不是那么常见,据我所知,文档很少见)。

<?xml version="1.0" encoding="utf-8"?> 
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
        android:layout_width="match_parent" 
        android:layout_height="match_parent"> 
        <com.orb.androidplayer.view.VideoSurfaceView 
            android:id="@+id/video_view" 
            android:layout_width="match_parent" 
            android:layout_height="match_parent"/> 
    </RelativeLayout>

问题也不是来自视频小部件,如果我删除它,添加一个 TextView ,尝试填充/匹配父级等,它是一样的......

谁能帮助我确定问题的原因?

4

3 回答 3

2

尝试将您的应用程序或活动主题设置为

android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen"

于 2011-08-23T20:43:06.290 回答
1

尝试在 AndroidManifest.xml
Exp 中添加 element min SDK:<uses-sdk android:minSdkVersion="7" />

于 2011-12-12T08:59:16.300 回答
0

从 AndroidManifest 中删除<supports-screens/>标签。

于 2013-02-02T08:42:04.127 回答