android – styles.xml中使用的自定义attrs参数

android – styles.xml中使用的自定义attrs参数,第1张

概述我在attrs.xml中定义了一组自定义 Android布局参数.现在我想在styles.xml文件中使用一些标签. 目前我收到此错误: error: Error: No resource found that matches the given name: attr 'custom:tag' 我已尝试声明自定义XML命名空间,如下所示: <resources xmlns:android= 我在attrs.xml中定义了一组自定义 Android布局参数.现在我想在styles.xml文件中使用一些标签.

目前我收到此错误:

error: Error: No resource found that matches the given name: attr 'custom:tag'

我已尝试声明自定义XML命名空间,如下所示:

<resources    xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:custom="http://schemas.androID.com/apk/res/com.my.project">

希望,这里可以应用每个布局声明中使用的相同逻辑,但没有成功.

解决方法 XML命名空间机制用于命名标记和属性.定义这样的样式时:
<?xml version="1.0" enCoding="utf-8"?><resources    xmlns:androID="http://schemas.androID.com/apk/res/androID"    xmlns:custom="http://schemas.androID.com/apk/res/com.my.project">    <style name="my_style"> <item name="custom:tag">some_value</item> </style></resources>

您正在尝试将XML命名空间应用于属性值,这将无效.在这种情况下,您应该直接指定包名称,如下所示:

<style name="my_style"> <item name="com.my.project:tag">some_value</item> </style>

现在AndroID将能够解析定义属性的位置.

总结

以上是内存溢出为你收集整理的android – styles.xml中使用的自定义attrs参数全部内容,希望文章能够帮你解决android – styles.xml中使用的自定义attrs参数所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1137035.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存