一加Ace2 Pro真機揭曉 鈦空灰配色質感拉滿
終于,在經過了幾波預熱之后,一加Ace2 Pro的外觀真機圖在網上出現了。還是博主數碼閑聊站曝光的,這次的外觀設計還是延續了一加11的方案,只是細節上有了調整,例如新加入了鈦空灰
runOnUiThread 是Android開發中一個重要的方法,可以在非UI線程中切換到UI線程來執行一些UI相關的操作。
Activity源碼中runOnUiThread方法:
final Handler mHandler = new Handler();private Thread mUiThread;// ...public final void runOnUiThread(Runnable action) { if (Thread.currentThread() != mUiThread) { mHandler.post(action); } else { action.run(); }// ...}
public class MainActivity extends AppCompatActivity { private TextView textView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_my); textView = findViewById(R.id.tv_test); new Thread(new Runnable() { @Override public void run() { try { Thread.sleep(2000); } catch (InterruptedException e) { e.printStackTrace(); } // 更新UI runOnUiThread(new Runnable() { @Override public void run() { textView.setText("更新后的文本"); } }); } }).start(); }}
本文鏈接:http://www.www897cc.com/showinfo-26-94435-0.htmlActivity.runOnUiThread方法理解,你學會了嗎?
聲明:本網頁內容旨在傳播知識,若有侵權等問題請及時與本網聯系,我們將在第一時間刪除處理。郵件:2376512515@qq.com