在包 'android'/新包中找不到属性 'layout_width' 的资源标识符
No resource identifier found for attribute 'layout_width' in package 'android' / new pacakge
我一直在努力找出代码有什么问题,但是,我现在一无所知,几乎检查了所有内容,我在尝试为我的应用程序构建登录页面时遇到此错误。很抱歉给您带来不便,我对此很菜鸟。
No resource identifier found for attribute 'layout_width' in package 'android'. (line 2)
以及与 java 不同的错误,为应用程序部署主题:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="0dp"
android:layout_weight="0.6"
android:background="@color/uberPrimary"
>
<Refractored.Controls.CircleImageView
android:id="@+id/circleImageView1"
android:layout_height="200dp"
android:layout_width="180dp"
android:layout_centerInParent="true"
android:src="@drawable/centerimage"
/>
<TextView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:gravity="center"
android:textSize="20sp"
android:layout_below="@+id/circleImageView1"
android:layout_alignParentBottom="true"
android:textColor="@color/uberwhite"
/>
</RelativeLayout>
<LinearLayout
android:orientation="vertical"
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight="0.4"
android:padding="10dp"
>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/emailText"
>
<EditText
android:layout_height="wrap_content"
android:layout_widht="match_parent"
android:hint="Email"
android:inputType="textEmailAddress"
/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/passwordText"
>
<EditText
android:layout_height="wrap_content"
android:layout_widht="match_parent"
android:hint="Password"
android:inputType="textPassword"
/>
</android.support.design.widget.TextInputLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/loginButton"
android:layout_height="45dp"
android:layout_width="300dp"
android:text="Login"
android:textColor="@color/uberwhite"
android:background="@drawable/uberroundbutton"
android:layout_centerInParent="true"
/>
</RelativeLayout>
</LinearLayout>
改变
<EditText
android:layout_height="wrap_content"
android:layout_widht="match_parent"
android:hint="Email"
android:inputType="textEmailAddress"
/>
到
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:hint="Email"
android:inputType="textEmailAddress"
/>
感谢@laalto
我一直在努力找出代码有什么问题,但是,我现在一无所知,几乎检查了所有内容,我在尝试为我的应用程序构建登录页面时遇到此错误。很抱歉给您带来不便,我对此很菜鸟。
No resource identifier found for attribute 'layout_width' in package 'android'. (line 2)
以及与 java 不同的错误,为应用程序部署主题:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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="0dp"
android:layout_weight="0.6"
android:background="@color/uberPrimary"
>
<Refractored.Controls.CircleImageView
android:id="@+id/circleImageView1"
android:layout_height="200dp"
android:layout_width="180dp"
android:layout_centerInParent="true"
android:src="@drawable/centerimage"
/>
<TextView
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:gravity="center"
android:textSize="20sp"
android:layout_below="@+id/circleImageView1"
android:layout_alignParentBottom="true"
android:textColor="@color/uberwhite"
/>
</RelativeLayout>
<LinearLayout
android:orientation="vertical"
android:layout_height="0dp"
android:layout_width="match_parent"
android:layout_weight="0.4"
android:padding="10dp"
>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/emailText"
>
<EditText
android:layout_height="wrap_content"
android:layout_widht="match_parent"
android:hint="Email"
android:inputType="textEmailAddress"
/>
</android.support.design.widget.TextInputLayout>
</LinearLayout>
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/passwordText"
>
<EditText
android:layout_height="wrap_content"
android:layout_widht="match_parent"
android:hint="Password"
android:inputType="textPassword"
/>
</android.support.design.widget.TextInputLayout>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/loginButton"
android:layout_height="45dp"
android:layout_width="300dp"
android:text="Login"
android:textColor="@color/uberwhite"
android:background="@drawable/uberroundbutton"
android:layout_centerInParent="true"
/>
</RelativeLayout>
</LinearLayout>
改变
<EditText
android:layout_height="wrap_content"
android:layout_widht="match_parent"
android:hint="Email"
android:inputType="textEmailAddress"
/>
到
<EditText
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:hint="Email"
android:inputType="textEmailAddress"
/>
感谢@laalto