我正在尝试在VS和Xamarin上重建Android应用程序 但是我得到了这个错误
找不到与给定名称匹配的资源:attr '机器人:海拔'
这是属性:
<item name="android:elevation">@dimen/design_bottom_sheet_modal_elevation</item>
我使用这些值进行编译:
错误来自文件values.xml,但有时文件中的不同属性会发生同样的错误; values-23.xml或22..etc
答案 0 :(得分:11)
将编译版本更改为Android 5.0或更高版本。 elevation属性在5.0中引入。 因此,Kit-kat构建工具将失败。
答案 1 :(得分:3)
提升仅适用于Android 5.x +,因此您必须将编辑更改为使用5.0或更高版本。
您的/Resources/values/style.xml应该看起来或多或少:
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<style name="MyTheme" parent="MyTheme.Base">
</style>
<style name="MyTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
<!-- Set theme colors from http://www.google.com/design/spec/style/color.html#color-color-palette-->
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#00FFAA</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">#004D40</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">@color/accent</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal.
<item name="colorControlNormal">#00897B</item>
<item name="colorControlActivated">#1DE9B6</item>-->
<item name="windowActionModeOverlay">true</item>
</style>
</resources>
同时检查/ Resources / values文件夹中的style.xml,并确保为API级别v21 +设置样式:/Resources/values-v21/style.xml
<?xml version="1.0" encoding="utf-8" ?>
<resources>
<!--
Base application theme for API 21+. This theme replaces
MyTheme from resources/values/styles.xml on API 21+ devices.
-->
<style name="MyTheme" parent="MyTheme.Base">
<item name="android:windowContentTransitions">true</item>
<item name="android:windowAllowEnterTransitionOverlap">true</item>
<item name="android:windowAllowReturnTransitionOverlap">true</item>
<item name="android:windowSharedElementEnterTransition">@android:transition/move</item>
<item name="android:windowSharedElementExitTransition">@android:transition/move</item>
</style>
</resources>
答案 2 :(得分:1)
您需要添加最新的支持库,以便在Kitkat中添加CardView和RecyclerView。
提升仅适用于Android 5.x +
在项目gradle中添加以下依赖项
compile 'com.android.support:cardview-v7:23.4.0'
compile 'com.android.support:recyclerview-v7:23.4.0'
答案 3 :(得分:0)
在BuildAction中将属性设置为所有style.xml和图像文件的AndroidResource。请记住,所有文件必须位于.Droid项目的Resources文件夹中。