Android AppCompat requires API level 11

后端 未结 1 1214
被撕碎了的回忆
被撕碎了的回忆 2021-01-11 18:58

I have an app that uses the AppCompat support libary for ActionBars. Now I tried to create a new themes.xml file with some style for that purpose.<

1条回答
  •  [愿得一人]
    2021-01-11 20:01

    Add the below in styles.xml under res/values-14

    
    
    
    

    You would then need add the following into the values folder: res/values/styles.xml

    
    
    
    

    For more details

    http://android-developers.blogspot.in/2013/08/actionbarcompat-and-io-2013-app-source.html

    Notice the change for API level 14+

     @style/Widget.Styled.ActionBar
    

    To API level 7-13

     @style/Widget.Styled.ActionBar
    

    0 讨论(0)
提交回复
热议问题