以样式使用App名称空间
我将举一个例子来说明更大的意义。 想象一下,我的应用程序有许多FloatingActionButtons。因此,我想创建一种样式并重用它。因此,我执行以下操作: <style name="FabStyle” parent ="Widget.Design.FloatingActionButton"> <item name="android:layout_width">wrap_content</item> <item name="android:layout_height">wrap_content</item> <item name="android:layout_margin">16dp</item> <item name="app:backgroundTint">@color/accent</item> <item name="app:layout_anchorGravity">end|bottom</item> </style> 我遇到的问题是代码无法编译,因为它在抱怨 Error:(40, 5) No resource found that matches the given name: attr 'app:backgroundTint'. 我尝试通过resources标签将名称空间引入,但这不起作用 <resources xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:android="http://schemas.android.com/apk/res/android" > 有什么想法可以让我工作吗?