2012-07-28 66 views
0

我正在嘗試製作一個xml,其中有一些按鈕以及一些帶textviews的edittext。但是當我嘗試添加多行的edittext時,它會保存它開始顯示錯誤,如「java.util.LinkedHashMap.eldest()Ljava/util/Map $ Entry;」 我的XML代碼:在控制檯上添加EditText時出現Android XML錯誤

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:orientation="vertical" > 

    <TextView 
     android:id="@+id/to" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_alignParentTop="true" 
     android:layout_marginLeft="24dp" 
     android:layout_marginTop="15dp" 
     android:text="@string/to" 
     android:textAppearance="?android:attr/textAppearanceMedium" /> 

    <EditText 
     android:id="@+id/toname" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/to" 
     android:layout_below="@+id/to" 
     android:layout_marginLeft="28dp" 
     android:layout_marginTop="18dp" 
     android:ems="10" 
     android:hint="@string/toname" 
     android:inputType="textPersonName" > 

     <requestFocus /> 
    </EditText> 

    <EditText 
     android:id="@+id/tophone" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/toname" 
     android:layout_below="@+id/toname" 
     android:layout_marginTop="16dp" 
     android:hint="@string/tophone" 
     android:ems="10" 
     android:inputType="phone" /> 

    <Button 
     android:id="@+id/importbutton" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignRight="@+id/tophone" 
     android:layout_below="@+id/tophone" 
     android:text="@string/importbutton" /> 



    <EditText 
     android:id="@+id/text" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignLeft="@+id/to" 
     android:layout_alignRight="@+id/importbutton" 
     android:layout_below="@+id/importbutton" 
     android:layout_marginTop="38dp" 
     android:ems="10" 
     android:hint="@string/text" 
     android:inputType="textMultiLine" 
     android:lines="7"/> 


    <Button 
     android:id="@+id/sendbutton" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true" 
     android:layout_alignRight="@+id/text" 
     android:text="@string/sendbutton" /> 

</RelativeLayout> 

plz幫助如何使這個......

回答

0

您應該檢查this 也可以嘗試做

android:inputType="textNoSuggestions" 
+0

這應該被評 – 2012-07-28 09:44:29

+0

日Thnx,它工作但即時通訊只有一行,我想在這個edittext中顯示7行,因爲它是一個多行文本... – Jpm 2012-07-28 09:48:28

+0

其實你的設計佈局在我的系統中工作正常。我沒有明確你得到錯誤的哪一點。你能突出這一點嗎? – 2012-07-28 09:51:23

相關問題