Android Thread modify EditText(Android Thread 修改 EditText)
问题描述
我在线程启动的另一个函数中修改 EditText 时遇到问题:
I am having a problem with modifying EditText in another function started by the thread:
Thread thRead = new Thread( new Runnable(){
public void run(){
EditText _txtArea = (EditText) findViewById(R.id.txtArea);
startReading(_txtArea);
}
});
我的功能如下:
public void startReading(EditText _txtArea){
_txtArea.setText("Changed");
}
它总是在尝试修改编辑文本时强制关闭.有人知道为什么吗?
It always force closes while trying to modify the edittext. Does someone know why?
推荐答案
不应从非 UI 线程修改 UI 视图.唯一可以接触 UI 视图的线程是main"或UI"线程,即调用 onCreate()
、onStop()
和其他类似组件生命周期函数的线程.
UI views should not be modified from non-UI thread. The only thread that can touch UI views is the "main" or "UI" thread, the one that calls onCreate()
, onStop()
and other similar component lifecycle function.
因此,每当您的应用程序尝试从非 UI 线程修改 UI 视图时,Android 都会提前抛出异常以警告您这是不允许的.那是因为 UI 不是线程安全的,而这样的预警实际上是一个很棒的功能.
So, whenever your application tries to modify UI Views from non-UI thread, Android throws an early exception to warn you that this is not allowed. That's because UI is not thread-safe, and such an early warning is actually a great feature.
更新:
您可以使用 Activity.runOnUiThread()
来更新 UI.或者使用 AsyncTask
.但是由于在您的情况下您需要不断地从蓝牙读取数据,因此不应使用 AsyncTask
.
You can use Activity.runOnUiThread()
to update UI. Or use AsyncTask
. But since in your case you need to continuously read data from Bluetooth, AsyncTask
should not be used.
这是 runOnUiThread()
的示例:
runOnUiThread(new Runnable() {
@Override
public void run() {
//this will run on UI thread, so its safe to modify UI views.
_txtArea.setText("Changed");
}
});
这篇关于Android Thread 修改 EditText的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Android Thread 修改 EditText


基础教程推荐
- 大摇大摆的枚举 2022-01-01
- 从 python 访问 JVM 2022-01-01
- 验证是否调用了所有 getter 方法 2022-01-01
- 在 Java 中创建日期的正确方法是什么? 2022-01-01
- 不推荐使用 Api 注释的描述 2022-01-01
- 如何在 Spring @Value 注解中正确指定默认值? 2022-01-01
- 多个组件的复杂布局 2022-01-01
- Java 实例变量在两个语句中声明和初始化 2022-01-01
- 如何在 JFrame 中覆盖 windowsClosing 事件 2022-01-01
- Java Swing计时器未清除 2022-01-01