Android 更新google play服务后xml文件出错

Android 更新google play服务后xml文件出错,android,eclipse,attributes,Android,Eclipse,Attributes,我更新了我的google play服务(rev 29),但它在xml文件中显示错误 Error:Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar'. [2016-01-22 12:24:42 - google-play-services_lib]

我更新了我的google play服务(rev 29),但它在xml文件中显示错误

  Error:Error retrieving parent for item: No resource found that matches the given name '@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar'.

  [2016-01-22 12:24:42 - google-play-services_lib]
  C:\Users\Gaurav\android-sdks\extras\google\google_play_services\libproject\google-play-services_lib\res\values-v21\appinvite_styles.xml:5: 
  error: Error retrieving parent for item: No resource found that matches the given name    '@android:style/Theme.Material.Light.DialogWhenLarge.NoActionBar'.
  [2016-01-22 12:24:42 - google-play-services_lib] 
先谢谢你

这是我的xml文件AppInvite.xml(v21)



特定主题已实现,但在父属性中显示错误下一步是什么?

这是因为您试图使用一种特定的样式:
主题、材质、灯光、对话框whenlarge.NoActionBar
,该样式尚未实现

要实现此样式,请转到:res\values-v21\appinvite\u styles.xml并将其添加到此处


希望它能有所帮助,因为您正在尝试使用一种特定的样式:
Theme.Material.Light.DialogWhenLarge.NoActionBar
,该样式尚未实现

要实现此样式,请转到:res\values-v21\appinvite\u styles.xml并将其添加到此处


希望它能有所帮助

m正在尝试实现,但它在appinvite_样式中显示错误。xml我是这么说的:您必须将此样式添加到appinvite_样式中。xml我已共享了xml文件。请检查一下,并建议我进一步删除错误。提前感谢创建此主题:appinvite_styles.xml中的Theme.Material.Light.DialogWhenLarge.NoActionBar。或者按照此处的步骤进行操作:我正在尝试实现,但它在appinvite_样式中显示错误。我是这么说的:您必须将此样式添加到您的appinvite_样式中。xml我已共享了xml文件。请检查一下,并建议我进一步删除错误。提前感谢创建此主题:appinvite_styles.xml中的Theme.Material.Light.DialogWhenLarge.NoActionBar。或者按照以下步骤操作:
   <?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>