gpt4 book ai didi

android - 布局与Android中的变量或导入冲突?

转载 作者:行者123 更新时间:2023-12-04 00:22:50 26 4
gpt4 key购买 nike

下面是我的 xml,它给了我一个警告。

<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical"
android:tag="xlarge">

.......

</RelativeLayout>

</Layout>

不知道是什么问题?以及它向我显示警告的地方。但会喜欢任何帮助如何解决它。尝试在互联网上搜索它,但找不到任何有用的东西。

以下是我收到的警告...
ERROR: View field thirdPartyLayout collides with a variable or import

最佳答案

如果您的变量名称与 ID 标签冲突,则可能会发生这种情况,例如:

<?xml version="1.0" encoding="utf-8"?>
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">

<data>

<variable
name="thirdPartyLayout"
type="String" />
</data>

<TextView
android:id="@+id/thirdPartyLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</layout>

解决方案:重命名其中之一。

关于android - 布局与Android中的变量或导入冲突?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59361330/

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