Hello everyone, I quite like the resource managem...
# random
l
Hello everyone, I quite like the resource management used in android with XML files. the ability to create resource based files with attribute indirection like
Copy code
<attr name="myCustomColor" format="color">#000</attr>
And then redefine it in a theme for other components to use.
Copy code
<style name="MyCustomStyle">
    <item name="myCustomColor">@color/white</item>
</style>
Do someone know of something equivalent to this in java or kotlin in general ?