Attributes prefixed by "android" work fine, but how do I add the ones prefixed by something else?
For example, how can I add the following two attributes to the style bellow?
app:chipCornerRadius="20dp"
app:textStartPadding="8dp"
<style name="Chip" parent="Base.TextAppearance.AppCompat.Small">
<item name="android:textSize">@dimen/smallTextSize</item>
<item name="android:textColor">@color/black</item>
</style>
app:prefix; e.g.,<item name="chipCornerRadius">...</item>.app:prefix removed does not work for the example above withChip.Chipfrom the support library and the attributes are spelled correctly. The attributes work fine if I add them to a chip in my layout but will not work if I add them to a style and apply the style.