android初学者教程解析XML时出错

时间:2013-04-17 18:01:47

标签: android

我刚刚启动了关于android的初学者教程,编译时遇到4个错误,即使代码基本上都是从网页上复制而且我已经按照所有步骤进行了操作。错误如下:

  • 元素类型“LinearLayout”必须后跟属性规范,“>”或“/>”。 activity_main.xml / test / res / layout line 6 Android XML格式问题
  • R无法解析为变量MainActivity.java / test / src / com / example / test line 12 Java问题
  • R无法解析为变量MainActivity.java / test / src / com / example / test line 19 Java问题
  • 错误:解析XML时出错:格式不正确(无效令牌)activity_main.xml / test / res / layout line 6 Android AAPT问题]

这是代码: 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;
        }

    }

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

2 个答案:

答案 0 :(得分:2)

应关闭LinearLayout标记。

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

答案 1 :(得分: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标记。