gpt4 book ai didi

android - ImageView 上的未绑定(bind)前缀错误

转载 作者:行者123 更新时间:2023-11-29 16:23:39 26 4
gpt4 key购买 nike

我制作了一个 ImageView 以包含在其他布局中,但出现此错误。 “解析 XML 时出错:未绑定(bind)前缀”。这是代码。

     <ImageView android:id="@+id/water" 
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/water"
android:scaleType="centerInside" />

最佳答案

你需要定义android前缀:

<?xml version="1.0" encoding="utf-8"?>
<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/water"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:src="@drawable/water"
android:scaleType="centerInside" />

关于android - ImageView 上的未绑定(bind)前缀错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5839608/

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