0
請看看下面的代碼: 當我使用這樣的處理程序時,我得到一個警告(這個處理程序類應該是靜態的或可能發生泄漏) 有人可以告訴我什麼是最好的方式做這個?有問題android
private void cacheImages() {
try {
// The handler is inside the function because
// normally this function is called once.
final Handler cacheHandler = new Handler() {
public void handleMessage(Message message) {
switch (message.what) {
case ThreadState.STARTED:
cachingDialog.setMax(message.arg1);
break;
case ThreadState.PROGRESSION_UPDATE:
cachingDialog.setProgress(message.arg1);
break;
啊好,謝謝你:) – user2387510
我能得到一個給予好評/接受嗎? :) –