解析XML时出错:使用工具栏sdk 21的未绑定前缀

时间:2014-11-23 13:54:57

标签: android xml layout android-5.0-lollipop

所以,我安装了最新的SDK 21 Lollipop版本。我正在使用图标激活动作栏,我正在尝试使用新的工具栏功能恢复它...但它似乎无法正常工作。基本上我遵循提供的信息here

基本上,您需要在布局中创建工具栏实例。我也一样:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.Toolbar
   xmlns:app="http://schemas.android.com/apk/res-auto" 
   android:id="@+id/myapp_toolbar"
   android:layout_height="wrap_content"
   android:layout_width="match_parent"
   android:minHeight="20"
   android:background="@drawable/action_bar_myapp" />

但是,这是在第二行创建和错误消息,并显示错误消息“error:Error XMLing unbound prefix”。

当这个错误发生时(比如here)通常是由于错误的sintax,我从网页上复制/粘贴了directiyl,我做了一个简单的测试。通过删除所有Android标签,问题仍然存在。

可能是非常简单的事情,但我被困住了。有什么想法吗?

1 个答案:

答案 0 :(得分:13)

你必须声明android命名空间。

<?xml version="1.0" encoding="utf-8"?> 
<android.support.v7.widget.Toolbar
   xmlns:android="http://schemas.android.com/apk/res/android"   
   xmlns:app="http://schemas.android.com/apk/res-auto" 
   ....
/>