0

我有一个editText填充屏幕宽度的一半,以及它的所有高度。当我将文本附加到它时,文本总是从编辑文本高度的一半开始,当它到达边缘时,editText它会继续书写,向右滚动。我想让它去一个新的线路,为什么不呢?为什么它从一半开始?目前左边的文本应该在右边复制。AppendToEMulator 可以很好地写入终端,但是当我在右侧设置文本时,editText接收到的任何一个字节都没有换行符,可能是因为我将其转换为字符串,并且在editText到达末尾时也没有换行符,只是继续前进。

 <jackpal.androidterm.emulatorview.EmulatorView
        android:id="@+id/emulatorView"
        android:layout_width="500dp"
        android:layout_height="wrap_content"

        android:layout_above="@+id/term_entry"
        android:layout_below="@+id/deviceConnect"
        android:layout_toRightOf="@+id/scrllyout"
        android:focusable="true"
        android:focusableInTouchMode="true" />

    <EditText android:id="@+id/outputBox"
        android:layout_toRightOf="@+id/emulatorView"
        android:layout_alignParentRight="true"
        android:layout_width="200dp"
        android:layout_height="fill_parent"
        android:background="#ffffff"
        android:textColor="#FF043241"
        android:inputType="text|textImeMultiLine" />

在 Java 中:

public void onDataReceived(int id, byte[] data) {

        dataReceived = new String(data);
        dataReceivedByte = dataReceived.getBytes();
        statusBool = true;
        ((MyBAIsWrapper) bis).renew(data);


    runOnUiThread(new Runnable(){

        @Override
        public void run() {

            mSession.appendToEmulator(dataReceivedByte, 0, dataReceivedByte.length);


        }});


    final String ReceivedText = mReceiveBox.getText().toString() + " "
            + new String(data);
    runOnUiThread(new Runnable() {
        public void run() {
            mReceiveBox.setText(ReceivedText);
            mReceiveBox.setSelection(ReceivedText.length());

        }
    });

    viewHandler.post(updateView);





}

在此处输入图像描述

4

1 回答 1

0

答案是设置 inputType 通过以下方式禁用自动换行:

android:singleLine="true"

即使我指定

android:singleLine="false"

它仍然被覆盖。因为我不需要输入,所以editText我只是删除了输入类型。

于 2013-01-31T15:33:06.693 回答