小编Ash*_*elu的帖子

未找到xml和Namespace中的Android Studio Unknown属性

我最近得到了这个警告Layout和清单文件.我已将这些图片附在下面,只是检查一下,以便进一步说明.

问题是我得到Namespace"没有绑定警告,我不能使用自动完成代码的xml文件,这通常可以在android studio中使用.请帮助解决这个问题.显示每个android的每个android的未知xml属性警告属性.

http://i39.tinypic.com/2rr55k1.png

http://i41.tinypic.com/2ns2s0w.png

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout
              xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent"

              >
    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/blue"

            >
    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="text"
        android:textColor="@android:color/white"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:layout_margin="10dp"
        android:layout_above="@+id/editText"
        android:layout_alignLeft="@+id/editText"
        android:layout_marginBottom="15dp"/>
    <EditText
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:inputType="number"
            android:ems="15"
            android:padding="10dp"
            android:id="@+id/editText" android:layout_gravity="center"
            android:layout_centerInParent="true"
            android:background="@color/white"/>
    </RelativeLayout>

</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

xml android android-layout android-studio

11
推荐指数
3
解决办法
1万
查看次数

标签 统计

android ×1

android-layout ×1

android-studio ×1

xml ×1