线性布局错误资源android:layout_width

时间:2014-09-23 08:59:11

标签: android android-layout layout resources

请帮助我是Android应用程序的新手,我正在关注Android开发者网站上的指南,但是当我想运行代码iam得到并且错误“找不到属性layout_width的资源标识符... < / p>

这是xml代码的副本

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<EditText android:id="@+id/edit_message"
    android:Layout_weight="1"
    android:Layout_width="wrap_content"
    android:Layout_height="wrap_content"
    android:hint="@string/edit_message"/>



<Button 
    android:Layout_width="wrap_content"
    android:Layout_height="wrap_content" 
    android:text="@string/button_send" />

2 个答案:

答案 0 :(得分:1)

XML区分大小写。您的代码中有大写Ls,应该是:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal">

    <EditText android:id="@+id/edit_message"
        android:layout_weight="1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:hint="@string/edit_message"/>

    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" 
        android:text="@string/button_send" />
</LinearLayout>

答案 1 :(得分:-1)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">

<EditText android:id="@+id/edit_message"
    android:Layout_weight="1"
    android:Layout_width="wrap_content"
    android:Layout_height="wrap_content"
    android:hint="@string/edit_message"/>



<Button 
    android:Layout_width="wrap_content"
    android:Layout_height="wrap_content" 
    android:text="@string/button_send" />

<LinearLayout/>