Planning Screens and Their Relationships 規劃屏幕和它們的關系
Most apps have an inherent information model that can be expressed as a tree or graph
Planning for Multiple Touchscreen Sizes 規劃多個觸摸屏尺寸
The exhaustive screen map from the previous lesson isn't tied to a particular dev
Android如何從服務器獲取圖片
[java]public static Bitmap getBitmapFromServer(String imagePath) { &
android全屏顯示
全屏顯示有兩種方法1: 在onCreate方法裡面加上這句代碼 requestWind
USB Camera在android車機上應用前景及初試小結
USB Camera在我們的生活中已經有一些年頭了,USB接口的普通攝像頭由於使用方便,價格低廉,性能較好,
android文件讀寫
android文件的讀寫主要分為兩個方面,一個是將內容寫入本應用的data文件夾中,另一個是將內容寫入到sdcard中。兩者都使用I/O流的讀寫技術。下面具體具體介紹這兩
Optimizing Navigation for TV 優化電視導航
An important aspect of the user experience when operating a TV is the direct human in
Handling Features Not Supported on TV 在電視上處理不支持的功能
TVs are much different from other Android-powered devices: http://blog.csdn.net/serge
Loading Large Bitmaps Efficiently 有效的處理較大的位圖
Images come in all shapes and sizes. In many cases they are larger than required for
Processing Bitmaps Off the UI Thread 處理來自UI線程的位圖
The BitmapFactory.decode* methods, should not be executed on the main UI thread if th
android滑動解鎖的震動效果
在4.0的圓環滑動解鎖中,我們點擊下去的時候會有震動效果,因為這個空間設置的震動效果沒有綁定設置
iframe子父頁面調用
1、iframe子頁面調用 父頁面js函數子頁面調用父頁面函數只需要寫上window.praent就可以了。比如調用a()函數,就寫成:window.parent.a()
msm7x27a添加camera差值以及添加新拍照分辨率尺寸
前段時間客戶要求在高通7系列上加camera的差值,所以個人研究了一下這個差值的做法。首先貼上要加載的文件的地址:vendor/qcom/android-open/lib
Android程序打開和關閉輸入法
今天整理了一下Android下對輸入法的操作:具體如下一、打開輸入法窗口:[java]InputMethodManager inputMethodManager = (I
Android Map 開發之高德地圖
android Map 開發之google Map 可參考文檔 鏈接本文總結的是Android Map 開發之高德地圖,以下是詳細代碼
Developing Accessible Applications 無障礙應用開發
Android has several accessibility-focused features baked into the platform, which mak
Developing an Accessibility Service 開發無障礙服務
Accessibility services are a feature of the Android framework designed to provide alt
android之自定義view 一
概述 當Android系統提供的UI組件不足以滿足我們的需求時,我們可以自己繼承View來設計自己的View。然後,選擇重寫部分的方法。通常可以被重寫的方法
開源項目之Android 向下刷新列表
Android PullToRefresh為 Android 應用提供一個向下滑動即刷新列表的功能。 項目如圖: 效果如圖: 包含測試文件
Android在非UI線程中顯示Toast
[java]public void showToast(String msg){ &nb