統(tǒng)計(jì)

          留言簿(1)

          DB

          Others

          QA

          Tech Website

          閱讀排行榜

          評(píng)論排行榜

          #

          Android Debug Bridge

               摘要:   閱讀全文

          posted @ 2011-08-11 13:22 XXXXXX 閱讀(899) | 評(píng)論 (0)編輯 收藏

          【轉(zhuǎn)】Linux IPC


          一)Linux環(huán)境進(jìn)程間通信(一)管道及有名管道
          http://www.ibm.com/developerworks/cn/linux/l-ipc/part1/

          二)Linux環(huán)境進(jìn)程間通信(二): 信號(hào)
          上:http://www.ibm.com/developerworks/cn/linux/l-ipc/part2/index1.html
          下:http://www.ibm.com/developerworks/cn/linux/l-ipc/part2/index2.html

          三)Linux環(huán)境進(jìn)程間通信(三)消息隊(duì)列
          http://www.ibm.com/developerworks/cn/linux/l-ipc/part3/

          四)Linux環(huán)境進(jìn)程間通信(四)信號(hào)燈
          http://www.ibm.com/developerworks/cn/linux/l-ipc/part4/

          五)Linux環(huán)境進(jìn)程間通信(五): 共享內(nèi)存
          上:http://www.ibm.com/developerworks/cn/linux/l-ipc/part5/index1.html
          下:http://www.ibm.com/developerworks/cn/linux/l-ipc/part5/index2.html

          posted @ 2011-07-31 08:53 XXXXXX 閱讀(256) | 評(píng)論 (0)編輯 收藏

          【轉(zhuǎn)】深入理解Android消息處理系統(tǒng)

               摘要: Android系統(tǒng)中Looper負(fù)責(zé)管理線程的消息隊(duì)列和消息循環(huán),具體實(shí)現(xiàn)請(qǐng)參考Looper的源碼。 可以通過(guò)Loop.myLooper()得到當(dāng)前線程的Looper對(duì)象,通過(guò)Loop.getMainLooper()可以獲得當(dāng)前進(jìn)程的主線程的Looper對(duì)象。  閱讀全文

          posted @ 2011-07-29 11:53 XXXXXX 閱讀(267) | 評(píng)論 (0)編輯 收藏

          Glossary of Android

               摘要: The list below defines some of the basic terminology of the Android platform.

          .apk file
          Android application package file. Each Android application is compiled and packaged in a single file that includes all of the application's code (.dex files), resources, assets, and manifest file. The application package file can have any name but must use the .apk extension. For example: myExampleAppname.apk. For convenience, an application package file is often referred to as an ".apk".
          Re  閱讀全文

          posted @ 2011-07-25 11:42 XXXXXX 閱讀(319) | 評(píng)論 (0)編輯 收藏

          Manifest.permission Summary

               摘要:   閱讀全文

          posted @ 2011-07-24 15:15 XXXXXX 閱讀(711) | 評(píng)論 (0)編輯 收藏

          Special Methods for Customizing Classes

               摘要: C.__init__(self[, arg1, ...] )
          Constructor (with any optional arguments)

          C.__new__(self[, arg1, ...] )[a]
          Constructor (with any optional argu ments); usually used for setting up subclassing of immutable data types

          C.__del__(self)
          Destructor

          C.__str__(self)
          Printable string representation; str() built-in and print statement

          C.__repr__(self)
          Evaluatable string representation; repr() built-in and '' operator

            閱讀全文

          posted @ 2011-07-21 23:25 XXXXXX 閱讀(260) | 評(píng)論 (0)編輯 收藏

          【轉(zhuǎn)】再談Yahoo關(guān)于性能優(yōu)化的N條軍規(guī)

               摘要: 本來(lái)這是個(gè)老生常談的問(wèn)題,上周自成又分享了一些性能優(yōu)化的建議,我這里再做一個(gè)全面的Tips整理,謹(jǐn)作為查閱型的文檔,不妥之處,還請(qǐng)指正;
          如果你已經(jīng)對(duì)yahoo這些優(yōu)化建議爛熟于心,果斷點(diǎn)這里

            閱讀全文

          posted @ 2011-07-21 09:21 XXXXXX 閱讀(222) | 評(píng)論 (0)編輯 收藏

          【轉(zhuǎn)】Choosing a test automation framework


          Five test auomation framework are discussed in this paper.
          1) The Test Script Modularity Framework
          2) The Test Library Architecture Framework
          3) The Keyword-Driven or Table-Driven Testing Framework
          4) The Data-Driven Testing Framework
          5) The Hybrid Test Automation 

          posted @ 2011-07-15 22:30 XXXXXX 閱讀(321) | 評(píng)論 (0)編輯 收藏

          ASE入門(mén)

               摘要: 一、ASE(Android Scripting Environment)為Android系統(tǒng)帶來(lái)了腳本語(yǔ)言的技術(shù),通過(guò)它我們可以編輯和執(zhí)行腳本,和腳本解釋交互。腳本可以訪問(wèn)多數(shù)Android API,目前有一個(gè)開(kāi)源項(xiàng)目叫做Scripting Layer for Android (SL4A) ,提供了對(duì)python,javaScript, Lua等腳本的支持。ASE主要通過(guò)兩種方式來(lái)訪問(wèn) Android API,一種是通過(guò)JSON-RPC來(lái)訪問(wèn),另外一種通過(guò)BeanShell(Java語(yǔ)言的動(dòng)態(tài)版本)直接訪問(wèn)Android API。SL4AL架構(gòu)如下圖:  閱讀全文

          posted @ 2011-07-10 10:08 XXXXXX 閱讀(2621) | 評(píng)論 (0)編輯 收藏

          獲取Android的Java源代碼并在Eclipse中關(guān)聯(lián)查看的最新方法

          感謝一網(wǎng)友做出的努力,具體請(qǐng)看:http://618119.com/archives/2011/01/01/201.html

          posted @ 2011-07-09 09:38 XXXXXX 閱讀(248) | 評(píng)論 (0)編輯 收藏

          僅列出標(biāo)題
          共8頁(yè): 上一頁(yè) 1 2 3 4 5 6 7 8 下一頁(yè) 
          主站蜘蛛池模板: 西吉县| 罗江县| 衢州市| 中方县| 同江市| 新安县| 抚宁县| 东至县| 庆阳市| 九台市| 余姚市| 青岛市| 萨嘎县| 河津市| 沙湾县| 莲花县| 朝阳县| 平山县| 印江| 平罗县| 枣强县| 华阴市| 阳东县| 乐平市| 石河子市| 自贡市| 孟津县| 沽源县| 蓬安县| 贡山| 曲阜市| 台南县| 文昌市| 忻州市| 万安县| 阳东县| 二手房| 长乐市| 乐业县| 佛冈县| 会理县|