无法正确获取main.xml文件

时间:2012-09-15 12:13:03

标签: xml android-layout

我的代码中出现此错误:在此行找到多个注释:xml声明中的版本后面的值必须是带引号的字符串

    <?xml version=”1.0″ encoding=”utf-8″?>
<LinearLayout
xmlns:android=”http://schemas.android.com/apk/res/android”
android:layout_width=”fill_parent”
android:layout_height=”fill_parent”
android:orientation=”vertical”
android:background=”@color/white”
>
<GridView xmlns:android=”http://schemas.android.com/apk/res/android”
android:id=”@+id/videoGrdVw”
android:layout_width=”fill_parent”
android:layout_height=”fill_parent”
android:numColumns=”auto_fit”
android:verticalSpacing=”5dip”
android:horizontalSpacing=”5dip”
android:columnWidth=”80dip”
android:stretchMode=”columnWidth”

android:gravity=”center”</div>
/>
</LinearLayout>

1 个答案:

答案 0 :(得分:0)

XML需要在XML声明中围绕属性值和伪属性值的普通ASCII引号('或“,U + 0027或U + 0022)。您的文档使用U + 201D和U + 2033(右)改为使用双引号和双引号。

看起来好像你正在使用一个试图提供帮助的编辑器并提供“智能引号”(尽管它的Unicode代码点的选择可能被巧妙地描述为“古怪”)。