gpt4 book ai didi

android - Xamarin:检索项目 CardView 的父项时出错

转载 作者:行者123 更新时间:2023-11-29 00:07:04 24 4
gpt4 key购买 nike

设置

我是 Xamarin 的新手,我正在尝试遵循官方文档并实现 Lollipop Material Design Style在虚拟应用程序中。

我已经添加了出现在那个 repo 中的资源:

enter image description here

(事实证明,values-v21 是正确的文件夹名称,与存储库中的不同)

然后我还从 SDK 管理器安装了整个 Android API 21 文件夹,还安装了 NuGet Xamarin.Android.Support.v7.AppCompat,它正确显示在我的 packages.config AFAIK 中:

<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Xamarin.Android.Support.v4" version="23.0.1.1" targetFramework="MonoAndroid50" />
<package id="Xamarin.Android.Support.v7.AppCompat" version="23.0.1.1" targetFramework="MonoAndroid50" />
</packages>

错误

但是当我点击播放(以 API 21 为目标的 Debug模式)时,我得到了这三个错误:

Build FAILED.
Errors:

/Users/pegasus/Projects/DistraeMe/DistraeMe/DistraeMe.csproj (Build) ->
/Library/Frameworks/Mono.framework/External/xbuild/Xamarin/Android/Xamarin.Android.Common.targets (_UpdateAndroidResgen target) ->

Resources/values-v21/styles.xml(2): error APT0000: Error retrieving parent for item: No resource found that matches the given name 'CardView'.
Resources/values-v21/styles.xml(2): error APT0000: No resource found that matches the given name: attr 'cardBackgroundColor'.
Resources/values-v21/styles.xml(2): error APT0000: No resource found that matches the given name: attr 'cardCornerRadius'.

这是从 repo 粘贴的 styles.xml:

<?xml version="1.0" encoding="UTF-8" ?>
<resources>
<!-- Define a custom theme that derives from the light Material Theme -->
<style name="MyCustomTheme" parent="android:Theme.Material.Light">

<!-- Override the app bar color -->
<item name="android:colorPrimary">@color/my_blue</item>

<!-- Override the color of UI controls -->
<item name="android:colorAccent">@color/my_purple</item>

</style>

<!-- Theme an individual view: -->
<style name="CardView.MyBlue">

<!-- Change the background color to Xamarin blue: -->
<item name="cardBackgroundColor">@color/my_blue</item>

<!-- Make the corners very round: -->
<item name="cardCornerRadius">18dp</item>
</style>
</resources>

我没有正确链接这些资源吗?我做错了什么?

最佳答案

检查可能导致问题的几件事:

1) 如果您使用的是 AppCompat 控件/Activity ,请使用 Theme.AppCompat.Light 而不是 Theme.Material.Light

2) 您的 Activity 是否继承自 AppCompatActivity

3) 设置CardView样式的parent为parent="CardView"

希望对您有所帮助!

关于android - Xamarin:检索项目 CardView 的父项时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33086379/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com