首页 > 解决方案 > \app-theme-engine-0.5.2\res\layout\ate_preference_checkbox.xml:2:AAPT:警告:为外部包“android”生成 id“android:id/checkbox”

问题描述

构建错误:.gradle\caches\transforms-2\files-2.1\6e95e6bf811482085c3edc5b16516212\app-theme-engine-0.5.2\res\layout\ate_preference_checkbox.xml:2:AAPT:警告:生成的 id 'android:id/checkbox ' 用于外部包 'android'。

为什么新的 Android 工作室会出现此错误。我的代码没有错误。下面的代码是一个内置的 XML 文件。如何消除此错误?

(ate_preference_checkbox.xml)

<?xml version="1.0" encoding="utf-8"?>
<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+android:id/checkbox"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:clickable="false"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:tag="tint_accent_color" />

标签: javaandroidgradleaapt

解决方案


推荐阅读