我有以下 xml 文件:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Scroll"
android:layout_width="match_parent">
<RelativeLayout
android:id="@+id/contenedor"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout android:id="@+id/cabecera"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:background="#CCCCFF"
>
<ImageView
android:id="@+id/icon"
android:src="@drawable/guliver"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
<EditText android:id="@+id/edit_titulo_lugar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="100dp"
android:layout_marginLeft="50dp"
android:width="200dp"
android:hint="@string/titulo_lugar"
android:inputType="text"
/>
<EditText android:id="@+id/edit_descripcion_lugar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="170dp"
android:layout_marginLeft="50dp"
android:width="200dp"
android:hint="@string/descripcion_lugar"
android:inputType="text"
/>
<ImageButton
android:id="@+id/imgButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="260dp"
android:src="@drawable/camara1"
/>
<Button android:id="@+id/guardar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textedit"
android:text="@string/bguardar"
android:layout_marginTop="310dp"
android:layout_marginLeft="50dp"
/>
<Button android:id="@+id/cancelar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textedit"
android:text="@string/bcancelar"
android:layout_marginTop="310dp"
android:layout_marginLeft="200dp"
/>
</RelativeLayout>
</ScrollView>
当我尝试运行应用程序时出现错误:解析 XML 时出错:ScrollView 标记中的未绑定前缀。
在互联网上搜索后,我找到了这个问题的几个答案,但我无法解决它。我也打字
<?xml version="1.0" encoding="utf-8"?>
以上 ScrollView 标记,但错误仍然存在。我还删除了 xmlns 字符串,但这不是解决方案。
怎么了?
谢谢。