java.lang.RuntimeException: Binary XML file line #52: You must supply a layout_height attribute.

Java.lang.RuntimeException: 

Binary XML file line #52: You must supply a layout_height attribute.

这两天写android字段验证,中间可有一些挫折,,,,唉,,,,,找了好久的错误,可是就是找不到,我比较喜欢找web的错误,可是android的bug,,,,,,你真的不知道,接下里,会出现错误,明明对的问题,或者吃饭前还能运行出来的东西,吃饭后,就出现错误,有时候真的无法理解,。,,,但是找错误,就是你以后的经验,避免不了的。
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.walkerlogin1/com.example.walkerlogin1.MainActivity}: java.lang.RuntimeException: Binary XML file line #52: You must supply a layout_height attribute.
这个错误,我一直没读完,知道今天,我发现我犯了一个很愚蠢的错误,,,,,,我笑了,,,,,xml第52行,你必须提供一个layout_height属性。,结果我看了一下,真的是,我真没写,这下,,,,尴尬坏了


main.xml文件出错,属性一定要好好检查,下面这是我的错误。

<span style="color:#33cc00;"> <EditText
            android:id="@+id/etPassword"
            android:layout_width="match_parent" </span><span style="color:#ff0000;">//这里漏掉了</span><span style="color:#33cc00;">
             android:layout_height="wrap_content"
            android:background="@android:drawable/edit_text"
            android:drawableLeft="@drawable/etpassword"
            android:ems="10"
           
            android:inputType="textPassword" 
            android:hint="@string/etpassword"
            >
        </EditText>
</span>


你可能感兴趣的:(java.lang.RuntimeException: Binary XML file line #52: You must supply a layout_height attribute.)