gpt4 book ai didi

android - xml 文件中的错误

转载 作者:行者123 更新时间:2023-11-30 03:28:14 26 4
gpt4 key购买 nike

我有以下 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 标记中的未绑定(bind)前缀。

在网上搜索后,我找到了这个问题的几个答案,但我无法解决。我也输入了

<?xml version="1.0" encoding="utf-8"?>

在 ScrollView 标记上方,但错误仍然存​​在。我还删除了 xmlns 字符串,但这不是解决方案。

怎么了?

谢谢。

最佳答案

您还没有在 ScrollView 元素中指定属性 android:layout_height:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/Scroll"
android:layout_width="match_parent"
android:layout_height="match_parent" >

</ScrollView>

关于android - xml 文件中的错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17897759/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com