程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-edittext放在button之後報異常

android-edittext放在button之後報異常

編輯:編程綜合問答
edittext放在button之後報異常

代碼報出異常:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/hud"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#2D4673"
    android:gravity="center"
    android:orientation="horizontal" >

    <Button
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/b1"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b1" >
    </Button>

    <Button
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/b2"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b2" >
    </Button>
    <Button
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/b3"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b3" >
    </Button>
    <Button
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/b4"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b4" >
    </Button>
    <TextView
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/txt"
        android:layout_width="fill_parent"
        android:layout_height="48dp"
        android:background="#2D4673"
        android:textColor="#BCD6E0"
        android:textSize="36dp"
        android:typeface="monospace" >
    </TextView>
</LinearLayout>

但是如果將textView放到button前面,就正常運行,這是為什麼?

最佳回答:


除了parent layout, 刪除全部tags的名稱空間:xmlns:android="http://schemas.android.com/apk/res/android"

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/hud"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:background="#2D4673"
    android:gravity="center"
    android:orientation="horizontal" >

    <Button
        android:id="@+id/b1"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b1" >
    </Button>

    <Button
        android:id="@+id/b2"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b2" >
    </Button>

    <Button
        android:id="@+id/b3"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b3" >
    </Button>

    <Button
        android:id="@+id/b4"
        android:layout_width="48dp"
        android:layout_height="48dp"
        android:text="b4" >
    </Button>

    <TextView
        android:id="@+id/txt"
        android:layout_width="fill_parent"
        android:layout_height="48dp"
        android:background="#2D4673"
        android:textColor="#BCD6E0"
        android:textSize="36dp"
        android:typeface="monospace" >
    </TextView>

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