程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> android- #15: You must supply a layout_height attribute

android- #15: You must supply a layout_height attribute

編輯:編程解疑
#15: You must supply a layout_height attribute

xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="${packageName}.${activityClass}" >

<EditText
    android:id="@+id/TitleEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:ems="10" />

<EditText
    android:id="@+id/ContentEditText"
    android:layout_width="match_parent"
    android:layout_weight="0.86"
    android:layout_height="wrap_content"
    android:ems="10" >

    <requestFocus />
</EditText>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/AddButton"
        android:layout_height="wrap_content"
        android:layout_weight="17.48"
        android:text="增加" />

    <Button
        android:id="@+id/SearchButton"
        android:layout_width="160dp"
        android:layout_height="wrap_content"
        android:layout_weight="1.14"
        android:text="查看" />

</LinearLayout>


報錯如上;表示看不懂哪裡錯了。

最佳回答:


我去。我搞定了。這是代碼。留給後人
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
tools:context="${packageName}.${activityClass}" >

<EditText
    android:id="@+id/TitleEditText"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
     android:hint="@null"
    android:ems="10" />

<EditText
    android:id="@+id/ContentEditText"
    android:layout_width="fill_parent"
    android:layout_weight="0.86"
    android:layout_height="0dp"
     android:hint="@null"
    android:ems="10" >
</EditText>

<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/AddButton"
        android:layout_height="wrap_content"
        android:layout_width="160dp"
        android:text="增加" />

    <Button
        android:id="@+id/SearchButton"
        android:layout_width="160dp"
        android:layout_height="wrap_content"
        android:layout_weight="1.14"
        android:text="查看" />

</LinearLayout>

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved