1.style样式定义在values文件夹,如果没有可手动创建styles.xml文件

<?xml version="1.0" encoding="utf-8"?>
<resources>

    <!--    定义样式 -->
    <style name="RedText">
        <item name="android:textColor">@android:color/holo_red_dark</item>
        <item name="android:textSize">12sp</item>
    </style>
</resources>

2.使用自定义style样式

<TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    style="@style/RedText"
    android:text="@string/hello_blank_fragment" />