gpt4 book ai didi

android - 找不到与给定名称匹配的资源(在 'paddingBottom' 处,值为 '@dimen/activity_vertical_margin' )

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:58:04 24 4
gpt4 key购买 nike

我试图构建一个抽屉导航,为此我从某个网站复制了代码,但我在其中一个 XML 中遇到了这个错误。

No resource found that matches the given name (at 'paddingBottom' with value '@dimen/ activity_vertical_margin')

如何摆脱这个错误?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".TabbedActivity$DummySectionFragment" >

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

</RelativeLayout>

最佳答案

  1. 转到项目的 Android View
  2. 转到应用 -> 资源 -> 值。
  3. 右键单击值
  4. 然后“新建”(位于弹出菜单的顶部)、“值(value)资源文件”。
  5. 在“文件名”空格中,键入“dimens.xml”(不带引号“”)
  6. 然后简单地说“好的”。

单击新创建的“dimens.xml”文件。删除其中的所有代码并粘贴以下内容:

<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="activity_vertical_margin">8dp</dimen>
<dimen name="activity_horizontal_margin">8dp</dimen>
</resources>

应该可以的

关于android - 找不到与给定名称匹配的资源(在 'paddingBottom' 处,值为 '@dimen/activity_vertical_margin' ),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28005048/

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