2012-09-28 57 views
0

我在Android中遇到EditText問題。 導致其僅用於調試目的,佈局的可見性,EditText被添加,正在開始不見了。EditText不會與內容一起增長

因此,我收到ServiceCall的信息,並發現一些可能的錯誤,我在此顯示的字符串我作爲響應。

我嘗試了多種解決方案,沒有任何工作。

<RelativeLayout 
     android:id="@+id/RelativeLayout2" 
     android:layout_width="fill_parent" 
     android:layout_height="wrap_content" 
     android:layout_alignParentLeft="true" 
     android:layout_below="@+id/chbDebug" 
     android:baselineAligned="false" 
     android:orientation="vertical" 
     android:padding="2dp" 
     android:visibility="gone" > 

     <someOtherCrazyShitsAndStuff />   

     <EditText 
      android:id="@+id/tbDebug" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentLeft="true" 
      android:layout_below="someOtherCrazyShitsAndStuff" 
      android:inputType="textMultiLine" /> 
    </RelativeLayout> 

因此,我發現設置android:lines/maxLines行的最小/最大數,但沒有發生任何事情。還試圖在填充文本後強制執行以通過一些代碼行增加Linecount,但結果只是內容被刪除。

還有一些想法嗎?

+0

你有沒有試過這個http://stackoverflow.com/questions/5636267/edittext-is-growing-as-text-entered –

+0

你的問題解決了嗎? –

+0

是的,我也發現這篇文章,我有第一個linearLayout – Daassan

回答

0

我也有同樣的問題曾經只是試試這個..

替換此

android:layout_width="fill_parent" 

有了這個

android:layout_width="wrap_content" 

威爾肯定工作

+0

感謝您的答案,但不會工作 – Daassan

1

嘗試把你的edittextscrollview

+0

這將是最糟糕的解決方案,只是作爲最後的可能性,在佈局的原因是一些更多的調試東西,我不想一一設置它們所有的invi ,這就是爲什麼我把它們全部放在佈局上,所以我一次就完成了 – Daassan

相關問題