kotlin 我如何解决这个问题“资源编译失败“

yhuiod9q  于 2023-01-31  发布在  Kotlin
关注(0)|答案(1)|浏览(223)

enter image description hereenter image description here
无法从com.android.aaptcompiler.ParsedResource@6912709f提取资源。,无法从com.android.aaptcompiler.ParsedResource@b984d7c提取资源。

vktxenjb

vktxenjb1#

错误的原因是您直接使用了wrap_content
您可以按照以下步骤修复错误。
要使用wrap_contentmatch_parent,您需要在dimens.xml文件中创建以下项目:

<item name="match_parent" format="integer" type="dimen">-1</item>
<item name="wrap_content" format="integer" type="dimen">-2</item>

然后,您可以像这样使用它:

<dimen name="layout_height">@dimen/match_parent</dimen>
<dimen name="layout_width">@dimen/wrap_content</dimen>

相关问题