The new Android 1.5 Early Look SDK is out since a few weeks. The"Android 1.5 highlights" page does not mention one highlight, which IMHO will become very important for all developers on the Android platform because it allows you to find memory
By 何明桂(http://blog.csdn.net/hmg25) 轉載請註明出處 之前看到像ipad上的ibook的類比書籍翻頁的特效感覺很炫,在android上也有像laputa和ireader等應用實現有這個特效,在網上搜尋了一下好像也沒有現成的例子,所以自己動手實現了一個,現在將實現的過程記錄下來。 By
A few days ago I started to learn android… and it’s been a fairly smooth transition from flash. Although I have to say, as flash developers we’re just spoiled. We take for granted all the background stuff flash does for us to make coding that much
Tonight I experimented with simple animation techniques using Google Android. I started with an example from “Hello, Android“, Chapter 4. That example shows how to draw text along a path such as a circle. The code is pretty simple:// create a
335 responses Summary 你比較關注哪些類型的應用?社交 19558%遊戲 20160%效率 18054%財經 5516%影音 19157%個人化[例如皮膚] 16650%健康 3912%購物 5516%運動 6419%旅遊 7723%Other 124%People may select more than one checkbox, so percentages may add up to more than 100%.對於擷取應用,你更喜歡那一種方式?到eoe、安卓、
Accessing Root from the Magic/Sapphire Terminal EmulatorNow that you have followed Magic Rooting to root your HTC Magic/Sapphire, you will notice that it is not possible to gain a root from an application running on the phone. The only way to get
canvas的頁面交換的確為遊戲開發初學者帶來了困擾我經過多次實踐之後發現了一個完美的方法:用一個後台畫布bk_canvas,所有更新畫圖都在這上面進行。當然dirtyRectList你只用維護一個了,每次畫的時候先在bk_canvas上畫好了,然後在把bk_canvas拷貝到顯示的canvas上去,怎麼拷貝呢?Bitmap bitmapBase = new Bitmap()Canvas bk_canvas = new Canvas(bitmapBase)bk_canvas.draw()...