Imagine you have created a custom style to display a View item:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomStyle" parent="@style/Text">
<item name="android:textSize">18sp</item>
<item name="android:textColor">#424242</item>
</style>
</resources>
How can you refer to the style in the Button?