gpt4 book ai didi

android - 如何自动将缺少的 xml 属性添加到 android studio 中的特定 View

转载 作者:行者123 更新时间:2023-11-29 19:31:14 25 4
gpt4 key购买 nike

我想为 android 布局文件中的 View 添加特定的 XML 属性。

我收到 lint 消息,要将 contentDescription 添加到 ImageView 以获得更多 400 个 ImageView,我不想通过转到每个 ImageView XML 标记手动添加它。那么有什么方法可以在 android studio 中自动添加缺少的属性及其值。

最佳答案

右键单击 layout文件夹,单击 Replace in Path .然后在要匹配的字符串中放入

<ImageView

然后在字符串中替换字段,放入

<ImageView android:contentDescription="yourText"

然后,按Find .最后按All Files .

莫克斯机器人:最后重新格式化和重新排列代码。

我:您不需要重新格式化。您的 ImageView 输出将如下所示

<ImageView android:contentDescription="yourText"
android:id="@+id/img_back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="6dp"
android:layout_marginRight="6dp"
android:background="@drawable/back_selector" />

除非强制症发作,否则我想这完全没问题。

关于android - 如何自动将缺少的 xml 属性添加到 android studio 中的特定 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39902425/

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