我正在学习 android,我想使用 google play 服务进行定位服务。
我正在关注: http ://www.androidhive.info/2015/02/android-location-api-using-google-play-services/
google-play-service_lib
我有这个例子要求的导入库。但是 res/values-v21 中显示了以下错误,res/values-v11
如果有人知道这一点,请提供帮助。谢谢你。
错误 1
Description : error: Error retrieving parent for item: No resource found that matches the given name `'@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar'.`
Resource : appinvite_styles.xml
Path : /google-play-services_lib/res/values-v21
Location : line 5
Type : Android AAPT Problem
错误 2
Description : error: Error retrieving parent for item: No resource found that matches the given name `'@android:style/Theme.Holo.Light.DialogWhenLarge.NoActionBar'.`
Resource : appinvite_styles.xml
Path : /google-play-services_lib/res/values-v11
Location : line 5
Type : Android AAPT Problem
这是我的文件 res/values-v11
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base preview application theme. -->
<style name="Theme.AppInvite.Preview.Base" parent="@android:style/Theme.Holo.Light.DialogWhenLarge.NoActionBar"/>
</resources>
这是我的文件 res/values-v21
<?xml version="1.0" encoding="utf-8"?>
<resources>
<!-- Base preview application theme. -->
<style name="Theme.AppInvite.Preview.Base" parent="@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar"/>
</resources>