Files
Obsidian-Main/02. PARA/02. Area(領域)/20150803 - Android/UI.md
2022-06-02 17:55:14 +08:00

315 B
Raw Blame History

在thread更新UI

Android framework只能在main thread裡更新UI若需要在其他的thread更新UI的話需要呼叫activity的runOnUiThread()。 例:

activity?.runOnUiThread {  
    activity?.findViewById<TextView>(R.id.textView)?.text = "You say: " + call.parameters["something"]  
}