-- 编辑 --
我知道 xmlns 是什么谢谢:)
-- 结束编辑 --
我找不到关于 res-auto 和 lib-auto android 命名空间的任何文档。这些出现在 xml 布局文件的顶部:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:background="#CCCCCC"
android:layout_width="match_parent"
android:layout_height="match_parent">
我注意到 aapt2 需要使用 lib-auto 而不是 res-auto。但不知道为什么。
xmlns:app="http://schemas.android.com/apk/lib-auto"
如果您没有任何 xml 布局文件,并且您仍然需要包含库中的所有资源,该怎么办。lib-auto 的“代码”版本是什么?