我是 android 开发新手,正在为它读一本书(开始 android 4 开发),在创建 hello world 时,我遇到了一些错误,首先我解决了它们,但我的应用程序被强制关闭,所以我复制粘贴了所有东西并得到了 4错误:-
在此行发现多个注释: - 属性缺少 Android 命名空间前缀 - 可疑命名空间:应以 http:// 开头 - 与元素类型“LinearLayout”关联的属性“xmlns:android”应打开引号。- 错误:解析 XML 时出错:格式不正确(令牌无效)
为标签 TextView 找到了意外的命名空间前缀“android”
在这一行发现了多个注释: - 为标签 TextView 找到了意外的命名空间前缀“android” - 属性缺少 Android 命名空间前缀
为标签 Button 找到了意外的命名空间前缀“android”
代码示例
<?xml version ="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/ android”
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_orientation="vertical"
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/hello" />
<TextView
android:layout_width=”fill_parent”
android:layout_height=”wrap_content”
android:text=”@string/This is my first Android Application!” />
<Button
android:layout_width="fill_parent"
android:layout_width="wrap_content"
android:text="@string/And this is clickable :D" />
我不认为代码有任何错误:/