Android 知識梳理

*****html

Android、iPhone和Java三個平臺一致的加密工具android

http://www.iteye.com/topic/1127949架構

 

*****less

Android官方培訓課程中文版(v0.9.4)

http://hukai.me/android-training-course-in-chinese/connectivity/connect-devices-wireless/nsd.html工具

 

****post

Google工程師解析Android系統架構加密

http://www.oschina.net/question/12_13318spa

Android並非傳統的Linux風格的一個規範或分發版本,也不是一系列可重用的組件集成,Android是一個用於鏈接設備的軟件塊.net

Dalvik虛擬機只執行.dex線程

APK是壓縮文件夾

Android Manifest——介於App和Android System的接口

 

&&&&

1-Android 線程模型和 AsyncTask

http://www.oschina.net/question/4873_24644

 

android 提供了幾種在其餘線程中訪問 UI 線程的方法。

• Activity.runOnUiThread( Runnable )

• View.post( Runnable )

• View.postDelayed( Runnable, long )

• Hanlder

 

eg:

new Thread( new Runnable() {    

            public void run() {    

                     final Bitmap b = loadImageFromNetwork();    

                     mImageView.post( new Runnable() {    

                     mImageView.setImageBitmap( b );    

});    

          }    

}).start();

 

這種方法比較繁瑣

android 提供了一個工具類:AsyncTask ,更簡單

 

還可使用 callback 在圖片加載完後進行回調

相關文章
相關標籤/搜索