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

后端 未结 30 2250
误落风尘
误落风尘 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:17

    For Android Studio or IntelliJ, all you need to do is update your dependencies in gradle.build. I used the following:

    dependencies {
        compile fileTree(dir: 'libs', include: ['*.jar'])
        compile 'com.android.support:appcompat-v7:21.0.2'
    }
    

提交回复
热议问题