出现问题:当我打开 XML 文件并更改layout_height
attribut时。
问题描述: Suspicious namespace: should start with http://
行问题*:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:pj="http://schemas.android.com/apk/res/com.example"
xmlns:bm="com.example" <!-- problem line -->
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:background="@drawable/basic"
android:orientation="vertical" >
答案 0 :(得分:4)
如果您需要自定义命名空间,请使用Android自动命名空间功能。
在你的例子中:
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto" />
答案 1 :(得分:3)
清理项目,如果问题仍然存在,请重新启动IDE