我安装了Android SDK 21 捆绑 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>
编辑:删除冗余。