Android Studio 報No resource found that matches the given name '@style/Theme.AppCompat.Light'.

這是因爲android studio工程中沒有引入相應的android支持庫
所以在build.gradle中的
dependencies {
//compile 添加相應的android支持庫,不然theme.xml會報No resource found that matches the given name ‘@style/Theme.AppCompat.Light’.的錯誤
compile ‘com.android.support:appcompat-v7:22.2.0’
compile ‘com.android.support:support-v4:22.2.0’
}

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章