我正在编译并运行到 Nexus 7 设备而不是模拟器,因为模拟器在我的 macbook 上运行非常缓慢。
这是我的代码:
<?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="fill_parent"
android:text="@string/hello" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/button_send"/>
</LinearLayout>
我正在阅读一本书,但我不知道我做错了什么。我正在使用 ADT eclipse ide。有任何想法吗?文本在那里,但按钮没有显示,当我在图形视图中添加一个按钮时,它在注入代码时似乎工作。