谷歌电视没有显示我的Android应用程序的完整布局

时间:2012-06-26 19:18:29

标签: android google-tv

我正在尝试扩展谷歌电视的基本hello world应用程序。我在其中创建了一个带有EditText和Button的LinearLayout,并将其置于一个非常大的“Hello world”TextView(78sp)下。 当我在google tv box(adb)上启动应用程序时,我得到了'Hello World',但只是EditText和Button的顶部。

在Eclipse Android布局管理器中查看应用程序,它一切都很好并且可见。

有关如何解决此问题的任何想法?

我相信我必须在所有这些中遗漏一些配置元素。

任何帮助表示赞赏。感谢

代码,我的main.xml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="475dp"
        android:gravity="center"
        android:text="@string/hello"
        android:textSize="78sp" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <EditText
            android:id="@+id/edit_message"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:hint="@string/edit_message" >

            <requestFocus />
        </EditText>

        <Button
            android:id="@+id/button_send"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"

            android:text="@string/button_send" />

    </LinearLayout>

</LinearLayout>

1 个答案:

答案 0 :(得分:2)

可能是因为您的第一个文本视图是475dp高。您可以看到here电视只有540dp高(请记住,实际像素和显示独立像素[dp]不一样,除非屏幕是没有Google TV的mdpi)