如何在下面的示例中避免重复的样式项?
我有textSize 30sp风格 - TextStyle。
<style name="TextStyle">
<item name="android:textSize">30sp</item>
</style>
textSize 30sp我在以下样式中使用的相同。有没有什么方法可以应用textsize- 无需重复书写样式?
<style name="bottomText">
<item name="android:textSize">30sp</item>
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">150dp</item>
</style>