openGLES和XML代码

时间:2014-08-13 11:16:23

标签: android xml opengl-es

我正在尝试学习openGLES程序。我找到了openGLES教程,现在我遇到了XML代码的问题。

  

此行找到多个注释:
     - 错误:解析XML时出错:格式不正确(令牌无效)
     - 元素类型“RelativeLayout”必须后跟属性规范,“>”      或“/>”。

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

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true"
        android:text="@string/hello_world"
        tools:context=".MainActivity" />

    <android.opengl.GLSurfaceView
        android:id="@+id/glSurface"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_gravity="top|left" />

</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

正如错误告诉你的那样,&#34;元素类型&#34; RelativeLayout&#34;必须遵循属性规范,&#34;&gt;&#34;或者&#34; /&gt;&#34;。&#34;,所以它应该更像是:

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

    <TextView...