我对此非常陌生,我按照此页面的指南http://developer.android.com/training/basics/firstapp/building-ui.html
进行操作我复制他们的代码:
<?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>
但是在保存时,它会自动在最底部创建一个新行:
<menu xmlns:android="http://schemas.android.com/apk/res/android"></menu>
它给了我这条特定行的错误消息。我搜索论坛,建议似乎走了一条线,但这是不可能的(!)。保存文件时会自动返回。
有任何帮助吗?