android -编辑文本输入速度慢

7gyucuyw  于 2022-12-31  发布在  Android
关注(0)|答案(5)|浏览(192)

我遇到了一个EditText,它在输入时响应很慢。这个延迟很烦人,足以让我找到一个解决方案。我做了一些研究,发现了一个SO线程EditText lagging when typing text,它建议将代码移动到它自己的线程。我这样做了,但我仍然遇到延迟。

    • 编辑**

看到下面的评论(感谢dreamtale),我知道新线程是不必要的。但是将代码放回onTextChanged或afterTextChanged事件中仍然会导致响应缓慢。我修改了代码以反映最新的更改:
XML文件:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     
    android:layout_width="match_parent" 
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:layout_weight="1" >

    <LinearLayout android:orientation="horizontal" 
        android:layout_width="match_parent" 
        android:layout_height="wrap_content"
        android:layout_marginTop="5dp"
        android:layout_marginLeft="2dp"
        android:layout_marginRight="2dp" > 
        <include 
            android:layout_width="match_parent" 
            android:layout_height="match_parent" 
            layout="@layout/right_layout_header" />             
    </LinearLayout>

<ScrollView 
   android:layout_width="match_parent" 
   android:layout_height="0dp" 
   android:layout_weight="1"
   android:layout_marginRight="5dp"
   android:layout_marginBottom="5dp">

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:shrinkColumns="1"
        android:drawable="@drawable/light_bg" >

        <TableRow
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:shrinkColumns="1">
                <TextView
                    android:id="@+id/tvSummaryBold"
                    android:layout_width="wrap_content"
                    android:textStyle="bold"
                    android:gravity="left"
                    android:text="@string/Summary"
                    style="@style/IssueDetailsLabelTextView" />
        </TableRow>
        <TableRow
            android:layout_width="200dp"
            android:layout_height="wrap_content"
            android:shrinkColumns="1">

            <EditText
                    android:id="@+id/txtSummary" 
                    android:layout_width="match_parent" 
                    android:layout_height="match_parent" 
                    android:hint="@string/SummaryDefaultText" 
                    android:maxLength="255"
                    android:singleLine="true"
                    android:layout_weight="1"

                />
        </TableRow>
        <TableRow>
                <TextView 
                    android:id="@+id/tvCharactersRemaining"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:textColor="@color/Gray"
                    android:paddingLeft="5dp"
                    />
        </TableRow>
    </TableLayout>
  </ScrollView>
</LinearLayout>

下面是该片段的代码:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    try
    {
        vView = inflater.inflate(R.layout.submit_issue, container, false);

        //Setup initial "characters remaining" text.
        mCharsRemaining = (TextView)vView.findViewById(R.id.tvCharactersRemaining);
        mCharsRemaining.setText(String.valueOf(iMaxChars) + ' ' + getString(R.string.CharsRemaining));

        //Event for counting the characters remaining.
        mSummaryEditText.addTextChangedListener(TextEditorWatcher);

        new LoadPOCsTask().execute();   
    }
    catch (Exception e)
    {
        Errors.LogError(e);
    }
    return vView;           
}

文本编辑器监视器事件:

private final TextWatcher TextEditorWatcher = new TextWatcher() { 
    public void beforeTextChanged(CharSequence s, int start, int count, int after) { 

    } 

    public void onTextChanged(CharSequence s, int start, int before, int count) { 

        int iMaxCharsRemaining = (iMaxChars - s.length());
        mCharsRemaining.setText("Static Text "); //Intentionally put static text to see if problem still occurs, and yes it does.
    } 

    public void afterTextChanged(Editable s) { 
    } 
};

我不明白为什么它在输入时仍然滞后。如果我删除addTextChangeListener事件,那么它就可以正常工作。有什么想法吗?

zlhcx6iw

zlhcx6iw1#

我在ListView中使用EditText时遇到了类似的问题,通过使用加权宽度匹配/填充父对象,将EditText width更改为0dp,解决了这个问题。
我不知道为什么会发生这种情况,但我相信这是因为当EditText的宽度设置为 Package 内容时,它会调整/重绘自己,以便所有内容都适合,并且ListView也会尝试重绘自己,以便所有内容都适合。因此,通过使EditText具有固定宽度,这种重绘不再是必需的。

jei2mxaa

jei2mxaa2#

我发现关闭预想文字功能会有所帮助。

android:inputType="text|textNoSuggestions"
q3qa4bjr

q3qa4bjr3#

编辑AndroidManifest
我的旧代码

<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="21" />

我的新密码

<uses-sdk android:minSdkVersion="8" />

我只是删除了targetSdkVersion,滞后消失了...

edqdpe6u

edqdpe6u4#

当你输入文本的时候,onTextChanged会被一次又一次的调用,所以你会一次又一次的启动一个新的线程(EditTextWatcherTask),这会消耗很多系统资源。
线程也适用于需要很多时间才能完成的任务,所以在您的情况下,您不需要线程,删除任务,只需将计算代码放在onTextChanged中。

dpiehjr4

dpiehjr45#

我挣扎了一会儿,我开始删除xml中的属性,终于得到了答案。在我的例子中,我删除了这些行:

android:ellipsize="end"
        android:textAllCaps="true"

相关问题