gpt4 book ai didi

android - EditText 输入速度很慢

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:01:00 25 4
gpt4 key购买 nike

我有一个 EditText,它在键入时响应很慢。滞后很烦人,让我找到了解决办法。我做了一些研究并找到了一个 SO 线程 EditText lagging when typing text它建议将代码移动到它自己的线程。我做到了,但我仍然遇到滞后。

编辑

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

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>

这是该 fragment 的代码:

@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;
}

TextEditorWatcher 事件:

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 事件,它就可以正常工作。想法?

最佳答案

我在 ListView 中使用 EditText 时遇到了类似的问题,通过将 EditText 宽度 更改为 0dp< 解决了这个问题 使用加权宽度来匹配/填充父级。

我不确定为什么会发生这种情况,但我相信这是因为当 EditText 的宽度设置为包装内容时,它会自行调整/重绘以适应所有内容, ListView 也将尝试重绘自身以适应一切。因此,通过使 EditText 具有固定宽度,不再需要重绘。

关于android - EditText 输入速度很慢,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9891826/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com