Android入門之在子線程中調用Handler詳解
簡介
前一章我們以一個簡單的小動畫來解釋瞭Handler。
這章我們會介紹在子線程裡寫Handler。如果是Handler寫在瞭子線程中的話,我們就需要自己創建一個Looper對象瞭:創建的流程如下:
- 直接調用Looper.prepare()方法即可為當前線程創建Looper對象,而它的構造器會創建配套的MessageQueue;
- 創建Handler對象,重寫handleMessage( )方法就可以處理來自於其他線程的信息瞭!
- 調用Looper.loop()方法啟動Looper
本章示例
使用示例: 輸入一個數,計算後通過Toast輸出在這個范圍內的所有質數,如下截圖。
前端代碼
<?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="match_parent" android:orientation="vertical"> <EditText android:id="@+id/inputNum" android:inputType="number" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="請輸入計算范圍"/> <Button android:id="@+id/buttonCalc" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="開始計算"/> </LinearLayout>
很簡單,前端有一個輸入框一個按鈕。
來看後端代碼
後端代碼
package org.mk.android.demo; import androidx.annotation.NonNull; import androidx.appcompat.app.AppCompatActivity; import android.os.Bundle; import android.os.Handler; import android.os.Looper; import android.os.Message; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.Toast; import java.util.ArrayList; import java.util.List; public class MainActivity extends AppCompatActivity { private static final String INPUT_NUM = "inputNum"; private EditText inputNum; private Button buttonCal; CalThread calThread; class CalThread extends Thread { public Handler mHandler; public void run() { Looper.prepare(); mHandler = new Handler(new Handler.Callback() { @Override public boolean handleMessage(@NonNull Message msg) { if(msg.what == 101) { int inputNum = msg.getData().getInt(INPUT_NUM); List<Integer> nums = new ArrayList<Integer>(); // 計算從2開始、到upper的所有質數 outer: for (int i = 2 ; i <= inputNum ; i++) { // 用i處於從2開始、到i的平方根的所有數 for (int j = 2 ; j <= Math.sqrt(i) ; j++) { // 如果可以整除,表明這個數不是質數 if(i != 2 && i % j == 0) { continue outer; } } nums.add(i); } // 使用Toast顯示統計出來的所有質數 Toast.makeText(MainActivity.this , nums.toString() , Toast.LENGTH_LONG).show(); } return false; } }); Looper.loop(); } } public void cal(View source) { // 創建消息 Message msg = new Message(); msg.what = 101; Bundle bundle = new Bundle(); bundle.putInt(INPUT_NUM , Integer.parseInt(inputNum.getText().toString())); msg.setData(bundle); // 向新線程中的Handler發送消息 calThread.mHandler.sendMessage(msg); } @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); buttonCal=(Button)findViewById(R.id.buttonCalc); inputNum=(EditText)findViewById(R.id.inputNum); buttonCal.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { cal(view); } }); calThread=new CalThread(); calThread.start(); } }
後端代碼我們使用的是求給定數字范圍內有幾個質數裡比較高效的一種算法。
關鍵在於:
- 使用線程,在線程開始我們使用:Loop.prepare,在運算完後使用Loop.loop();
- 使用mHandler = new Handler(new Handler.Callback()進行監聽;
- 使用message發送主界面輸入的“質數”給到在監聽的mHandler;
- 當mHandler監聽到有消息到達後開始運算質數集,運算後把結果以Toast輸出
自己動一手吧。
到此這篇關於Android入門之在子線程中調用Handler詳解的文章就介紹到這瞭,更多相關Android子線程調用Handler內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
推薦閱讀:
- Android消息機制Handler用法總結
- Android事件處理的兩種方式詳解
- Android消息機制Handler深入理解
- Android生成隨機數的方法實例
- Android studio實現簡易的計算器功能