我正在尝试使用 Android Studio 中的“工具”命名空间功能。出于设计目的,我正在尝试ListView
使用虚拟列表项填充。这里的链接说tools:listitem="@android:layout/<filename>"
应该做。
但由于某种原因,Android Studio 不断显示Layout android:<filename> does not exist.
我正在尝试为其寻找解决方案,因此我不必一次又一次地使用虚拟值运行我的应用程序进行测试。
我可能忽略了一些非常愚蠢的事情,所以请原谅我。这是我现在所拥有的:
<ListView
android:id="@+id/controllerProfiles"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="20dp"
tools:listitem="@android:layout/profiles_list_item"/>
我在任何建议或替代方案profiles_list_item.xml
下有一个文件?res/layout.