0

我刚刚开始了android的初学者教程,编译时出现4个错误,即使代码基本上是从网页复制的,我已经按照所有步骤进行操作。错误如下:

  • 元素类型“LinearLayout”必须后跟属性规范“>”或“/>”。activity_main.xml /test/res/layout 第 6 行 Android XML 格式问题
  • R 无法解析为变量 MainActivity.java /test/src/com/example/test 第 12 行 Java 问题
  • R 无法解析为变量 MainActivity.java /test/src/com/example/test line 19 Java 问题
  • error: Error parsing XML: not well-formed (invalid token) activity_main.xml /test/res/layout line 6 Android AAPT Problem]

这是代码:activity_main.xml

    <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_width="0dp"
            android:layout_height="wrap_content"
            android:hint="@string/edit_message"
            android:layout_weight="1" />

        <Button android:layout_width="wrap content"
            android:layout_height="wrap_content"
            android:text="@string/button_send" /> 

    </LinearLayout>

MainActivity.java

    package com.example.test;

    import android.os.Bundle;
    import android.app.Activity;
    import android.view.Menu;

    public class MainActivity extends Activity {

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);
        }


        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
            // Inflate the menu; this adds items to the action bar if it is present.
            getMenuInflater().inflate(R.menu.main, menu);
            return true;
        }

    }

我到处搜索,尝试了所有方法,但仍然无法正常工作,所以这是我最后的希望。谢谢!

4

2 回答 2

2

您的 LinearLayout 标签应该关闭。

IE

 <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" <-- close here

像这样

 <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" >
于 2013-04-17T18:02:53.837 回答
0
 <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_width="0dp"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message"
        android:layout_weight="1" />
    <Button android:layout_width="wrap content"
        android:layout_height="wrap_content"
        android:text="@string/button_send" /> 
</LinearLayout>

复制这个,清理项目并运行。您没有在 EditText 之前结束 LinearLayout 标签。

于 2013-04-17T18:05:59.603 回答