我安装了Android SDK 21 bundle Windows x64,如果我尝试将任何代码添加到初始项目创建代码中,则只会出现错误。我尝试在Hello World中运行,每个条目都出错了。 BTW:我是Android和Linux的新手,但我做了很多Windows编程。感谢...
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<EditText android:id="@+id/edit_message"
android:layout_weight="1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="@string/edit_message" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/button_send" />
</LinearLayout>
编辑:删除了冗余。
答案 0 :(得分:2)
您的上一个Button(button_send)
没有任何父视图。
您应该将其放入LinearLayout
或其他人的视图中。
答案 1 :(得分:0)
尝试: 1)重新加载Eclipse 2)运行Project Clean。