2017-02-07 64 views
0

我在ubuntu的android studio中创建了一个应用程序。现在我已经将该项目移至Windows 10.我现在已经更新了该工作室。 styles.xml资源无法识别父属性(所有这些属性)中给出的主题。Styles.xml不能在android studio中工作

这是我styles.xml文件

<!-- Base application theme. --> 
<style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar"> 
    <!-- Customize your theme here. --> 
    <item name="colorPrimary">#f44336</item> 
    <item name="colorPrimaryDark">#e53935</item> 
    <item name="colorAccent">#f44336</item> 
    <item name="showcaseViewStyle">@style/CustomShowcaseTheme</item> 
</style> 

<style name="AppTheme.NoActionBar"> 

    <item name="windowActionBar">false</item> 
    <item name="windowNoTitle">true</item> 
</style> 

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar"> 

</style> 

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"> 

</style> 

<style name="checkbox" parent="Theme.AppCompat.Light"> 
    <item name="colorControlNormal">@color/black</item> 
    <item name="colorControlActivated">@color/black</item> 
</style> 



<style name="layoutmargin"> 
    <item name="android:layout_marginTop">20dp</item> 
    <item name="android:background">@color/white</item> 
    <item name="android:layout_marginLeft">20dp</item> 
    <item name="android:layout_marginRight">20dp</item> 
</style> 


<style name="CustomShowcaseTheme" parent="ShowcaseView.Light"> 
    <item name="sv_backgroundColor">#90234A56</item> 
    <item name="sv_buttonBackgroundColor">#CF3119</item> 
    <item name="sv_buttonText">Close</item> 
    <item name="sv_titleTextAppearance">@style/CustomTitle</item> 
    <item name="sv_detailTextAppearance">@style/CustomDetailText</item> 
</style> 
<style name="CustomTitle" parent="TextAppearance.ShowcaseView.Title"> 
    <item name="android:textColor">#FFFFFF</item> 
    <item name="android:textSize">30dp</item> 
    <item name="android:textStyle">bold</item> 
</style> 

<style name="CustomDetailText" parent="TextAppearance.ShowcaseView.Detail"> 
    <item name="android:textColor">#FFFFFF</item> 
    <item name="android:textSize">20dp</item> 
    <item name="android:textStyle">italic</item> 
</style> 

所有父属性显示,符号不能得到解决。

+0

这是因为称为“构建缓存”的功能。看到我的答案在这里:https://stackoverflow.com/a/42765120/1148784 – babay

回答

0

您确定Android SDK版本与您的Ubuntu系统相同吗?我不确定这是Android Studio本身还是SDK的问题。你也尝试重建项目吗?内部IDE解析错误并不总是可靠的

+0

Sdk版本是不同的。现在我该怎么做才能使它工作? – secretcoder

+0

使用SDK管理器进行安装。 –

+0

对不起,我没有得到你。你想让我安装旧的SDK版本或其他东西? – secretcoder

相关问题