rss· 投稿· 设为首页· 加入收藏· 繁體版
当前位置: 火魔网 » 程序开发 » Android UI

Android Camera架构浅析(图)

  1、Camera成像原理介绍Camera工作流程图Camera的成像原理可以简单概括如下:景物(SCENE)通过镜头(LENS)生成的光学图像投射到图像传感器(Sensor)表面上,然后转为电信号,经过A/D(模数转换)转换后变为数字图像信号,再送到数字信号处理芯片(DSP)中加工处理,再通过IO接... « 阅读全文

发布于: 2012-02-24 08:41:02

Android View.post(Runnable )(图)

  Runnable 并不一定是新开一个线程,比如下面的调用方法就是运行在UI主线程中的:     Handler mHandler=new Handler();     mHandler.post(new Runnable(){        @Overridepublic void run()         {// TODO Auto-generated method stub     });官方对这个方法的解释如下,注意其中的:“The runnable w... « 阅读全文

发布于: 2012-02-05 14:12:34

How about some Android graphics true facts?

  (Edit: there have been a number of comments treatingthis as being written as an excuse for Android or not mattering tousers or such. I'd just like to clarify that I wrote this solely toaddress a lot of incorrect information that I see posted aroun... « 阅读全文

发布于: 2012-01-07 15:33:48

Android 中input event的分析

  文章将分析Android 的Input Event 子系统的来龙去脉。Android 系统里面有很多小工具,运行这些工具,我们对它们有一个感性的认识,进而阅读和分析这些小工具源代码,再顺藤摸瓜,就可以把整个子系统的来龙去脉弄清楚。1.运行toolbox的getevent 工具。# getevent -helpgetevent -helpUsage: getevent [-t] [-n] [-s switchmask] [-S] [-v [mask]] [-p] [-q] [-c count... « 阅读全文

发布于: 2011-12-12 14:27:42

Android恢复出厂设置流程分析(图)

  一、应用层流程分析设置模块中恢复出厂设置,不管是否删除SD卡,最终都会执行如下两步:1、 往/cache/recovery/command文件中写入命令字段2、 重启系统,进入recovery模式具体可参考framework/base/core/java/android/os/RecoverySys... « 阅读全文

发布于: 2011-11-04 12:31:37

什么是Android 系统

  什么是 系统。——Android一词的本义指“机器人”,同时也是Google于2007年11月5日宣布的基于Linux平台的开源手机操作系统的名称,该平台由操作系统、中间件、用户界面和应用软件组成,号称是首个为移动终端打造的真正开放和完整的移动软件。——2008年9月22日,美国运营商T-Mobil... « 阅读全文

发布于: 2011-11-03 13:26:25

Android 系统 设置 之 网络 APN (一)(图)

  An APN (Access Point Name) is the information needed toestablish a GPRS/EDGE/UMTS cellular packet data connection on amobile device. Usually the device can be configured by theoperator, the OEM, and users with an APN address such aswap.cingular o... « 阅读全文

发布于: 2011-10-14 10:41:26

如何成为一名优秀的Android开发员

     很多初入Android或Java开发的新手对Thread、Looper、Handler和Message仍然比较迷惑,衍生的有HandlerThread、java.util.concurrent、Task、AsyncTask由于目前市面上的书籍等资料都没有谈到这些问题,今天Android123就... « 阅读全文

发布于: 2011-10-13 08:30:43

常用的UI属性

  布局: android:orientation="vertical" android:gravity="center" android:layout_width="wrap_content/fill_content" android:layout_height="wrap_content/fill_content" android:minHeight="400dp" android:minWidth="380dp" android:padding 设置上下左右的边距,以像素为单位填... « 阅读全文

发布于: 2011-10-11 11:46:22

What is the Android NDK

  The Android NDK is a toolset that lets you embed components that make use of native code in your Android applications.Android applications run in the Dalvik virtual machine. The NDK allows you to implement parts of your applications using native-cod... « 阅读全文

发布于: 2011-09-24 09:56:33