android – setText()和append()之间的区别

我很好奇setText()和append()正在创建的差异.我正在写一个带行号的非常基本的编辑器.我有一个TextView来保存左边的行号,与右边的EditText配对来保存数据.这是XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" 
    android:gravity="top">
    <TextView
        android:id="@+id/line_numbers"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="0dip"
        android:gravity="top"
        android:textSize="14sp"
        android:textColor="#000000"
        android:typeface="monospace"
        android:paddingLeft="0dp"/>
    <EditText
        android:id="@+id/editor"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:inputType="text|textMultiLine|textNoSuggestions"
        android:imeOptions="actionNone"
        android:gravity="top"
        android:textSize="14sp"
        android:textColor="#000000"
        android:typeface="monospace"/>
</LinearLayout>

忽略我正在做的其他一些事情,我遇到的最奇怪的事情是当我使用append()时出现的额外间距(假设已经初始化了所有这些).

下面结合XML,在TextView和EditText之间设置一个刷新边框.

theEditor = (EditText) findViewById(R.id.editor);
lineNumbers = (TextView) findViewById(R.id.line_numbers);
theLineCount = theEditor.getLineCount();
lineNumbers.setText(String.valueOf(theLineCount)+"\n");

但是,最后一行更改为此,并且突然显示TextView中的每一行在EditText之前的右侧都有填充.

lineNumbers.append(String.valueOf(theLineCount)+"\n");

这不是世界末日.但我很好奇是什么导致了这种行为.因为我是这门语言的新手,所以我唯一能想到的就是,当追加将可编辑放在那里时,它会添加填充.如果我能得到答案,我可以用更简单的附加替换所有这些讨厌的行:

lineNumbers.setText(lineNumbers.getText().toString()+String.valueOf(newLineCount)+"\n");

解决方法:

我认为通过append方法将BufferType更改为EDITABLE会导致意外的填充.
如果要使用append方法而不是setText方法并删除该填充,

您可以尝试使用删除它

textView.setincludeFontPadding(false)

或者将此行添加到xml文件中的textview

android:includeFontPadding="false"

希望这可以帮助.

上一篇:从另一个线程更新GUI制作容易


下一篇:Andoid View的setText无效解决办法