我正在尝试为谷歌电视扩展一个基本的 hello world 应用程序。我创建了一个带有 EditText 和 Button 的 LinearLayout,并将其放在一个非常大的“Hello world”TextView(78sp)下。当我在谷歌电视盒 (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>