is there a device specific limitation (other then total free memory size) to text length or line count in scrollable multiline EditText when android:maxLength and android:maxLines is NOT set? I have an EditText:
<EditText
android:editable="false"
android:id="@+id/sip_log_log"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight = "1"
android:text=""
android:gravity = "top"
android:textColor="#00FF00"
android:background="#000000"
android:scrollbars="vertical"
android:focusable="true"
/>
and when I call
mEditText.setText("some very very loooong string....");
only the first part of the text is shown. The issue is device specific. Everything works well on HTC Sensation or in emulator, but Samsung Galaxy S 2 does never show more than about 20 pages of the text. Can I fix it in some way? Or is there an alternative way to show extremely long texts (SIP log in our SIP client) in some other standard view with scroll bar?
Thanks to all replies.