以下简单布局在 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 ,尝试填充/匹配父级等,它是一样的......
谁能帮助我确定问题的原因?