Using App namespace in style

AndroidAndroid LayoutAndroid ThemeAndroid Styles

Android Problem Overview


I am going to give an example to demonstrate the greater point.

Imagine my app has a number of FloatingActionButtons. Consequently, I want to create one style and reuse it. So I do the following:

<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>

The problem I am having is that the code is not compiling because it is complaining about

Error:(40, 5) No resource found that matches the given name: attr 'app:backgroundTint'.

I tried bringing the namespace in through the resources tag but that is not working

<resources
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:android="http://schemas.android.com/apk/res/android"
    >

Any ideas how I might get this to work?

Android Solutions


Solution 1 - Android

For app namespace you don't need to specify app:<property name>. Just <property name> is enough.

For example

<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="backgroundTint">@color/accent</item>
    <item name="layout_anchorGravity">end|bottom</item>
</style>

And for layout_anchorGravity you need to set it in XML file where you are defining Floating action button.

Solution 2 - Android

You can directly use the property without app

<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="backgroundTint">@color/accent</item>
    <item name="layout_anchorGravity">end|bottom</item>
</style>

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionNouvel TravayView Question on Stackoverflow
Solution 1 - AndroiddexView Answer on Stackoverflow
Solution 2 - AndroidManeesh AView Answer on Stackoverflow