错误:错误检索父项:未发现的资源匹配给定名称“@风格/ Theme.Base.AppCompat.Dialog.FixedSize”
我集成了百鸟SDK在我的项目。 我使用Android的工作室。
I Have integrated Aviary SDK in my Project. I am using Android Studio.
我还集成了Appcompact V7还是我是 收到以下错误:
I have also integrated the Appcompact V7 still i am getting the following error:
错误:错误检索父项:没有资源的发现,匹配给定的名字@风格/ Theme.Base.AppCompat.Dialog.FixedSize
请帮我家伙你的宝贵意见。
Please Help me guys with your valuable inputs.
我有同样的问题,当我开始加入到观鸟项目I'm工作。
I was having the same problem when I started adding Aviary into the project I´m working on.
最后从来就设法通过改变风格增加一个额外的行来解决这个问题,由于我didn't想从百鸟改变任何行code:
Finally I´ve managed to solve it by changing the style adding an extra line due to I didn´t wanted to change any line code from Aviary:
<style name="Theme.Base.AppCompat.Dialog.FixedSize" parent="Base.Theme.AppCompat.Dialog.FixedSize">
</style>
似乎基本已经加那么它完全改变了风格的名称。
it seems that Base has been add so it changes completely the style name.
之前的 Theme.Base.AppCompat.Dialog.FixedSize 的,现在是 Base.Theme.AppCompat.Dialog.FixedSize
顺便说一句,从来就也改变了我的主题:
btw, I´ve also changed my theme to:
<style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
</style>
我希望这可以帮助您解决问题。
I hope this help you to solve the problem.