Can't Find Theme.AppCompat.Light for New Android ActionBar Support

后端 未结 30 2248
误落风尘
误落风尘 2020-11-22 09:22

I am trying to implement the new ActionBar support library that was released by Google a couple days ago. In the past, I have successfully implemented ActionBarSherlock wit

30条回答
  •  谎友^
    谎友^ (楼主)
    2020-11-22 10:01

    For IntelliJ IDEA or Android Studio:

    Add this to app.gradle build file

    dependencies {
        compile "com.android.support:appcompat-v7:21.0.+"
    } 
    

    Replace -v:xx.0+, with your build target, if you have 19 platform then it must be like:

    dependencies {
        compile "com.android.support:appcompat-v7:19.0.+"
    }
    

提交回复
热议问题