android studio styles.xml无法处理符号

时间:2017-12-15 12:54:11

标签: android-studio styles resolve

我在styles.xml文件中创建了新样式,并尝试在TextView文件中的activity_main.xml对象中使用它,但我不断获得error: cannot resolve flag。怎么了?我试图制作其他款式,这也是同样的错误。

Styles.xml:     

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">#ff0000</item>
    <item name="colorPrimaryDark">#ffffff</item>
    <item name="colorAccent">#19df19</item>
</style>

<style name="pytanie">
    <item name="android:textSize">20sp</item>
    <item name="android:textAllCaps">true</item>
    <item name="android:textStyle">italic</item>
    <item name="android:textColor">000000</item>
    <item name="android:textColorHighlight">#ff0000</item>
</style>

在main_activity.xml中:

<TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="10dp"
        android:gravity="center_horizontal"
        android:text="pytanie numer 1"
        android:textStyle="@styles/pytanie"/>

0 个答案:

没有答案