2014-05-05 73 views
0

問題出現了:當我打開我的XML文件,並改變layout_height attribut。可疑命名空間:應該以http://

問題描述: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" > 

回答

3

清潔您的項目,如果問題仍然存在,重新啓動IDE

4

如果您需要自定義空間,使用Android的自動命名空間功能。

在您的例子:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:custom="http://schemas.android.com/apk/res-auto" /> 
相關問題