より大きなポイントを示すために例を挙げます。
アプリに多数のFloatingActionButtonsがあるとします。したがって、1つのスタイルを作成して再利用したいと考えています。だから私は次のことをします:
<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"
>
これを機能させる方法はありますか?
1
関連:stackoverflow.com/questions/6860886/...
—
styler1972