Android
文章平均质量分 67
iteye_5392
这个作者很懒,什么都没留下…
展开
-
我要一步一步往上爬——Android应用实例笔记(1)—手势
我要一步一步往上爬——Android应用实例笔记(1) 源程序来自APIDemo的GestureBuilder 相关的类 Gesture A gesture is a hand-drawn shape on a touch screen. It can have one or multiple strokes. Each stroke is a ...原创 2011-12-14 01:02:52 · 124 阅读 · 0 评论 -
Unable to chmod sdcard: Read-only file system
模拟器中,sdcard可能是只读的。 在shell命令行中输入 adb root 切换到root用户 然后执行如下命令:(注意,/表示的是根目录,因此这个不仅仅是对sdcard,其他文件也可以读写。rw表示读写权限,mount重挂载文件系统) adb shell mount -o remount rw / 执行完后, 可以用mount命令查看,当前挂载的文件系统权限如何...原创 2011-11-07 13:58:22 · 329 阅读 · 0 评论 -
XLIFF
XLIFF (XML Localisation Interchange File Format) is an XML-based format created to standardizelocalization. XLIFF(xml 本地化交换文件格式)是基于XML用于本地语音标准化。 http://en.wikipedia.org/wiki/XLIFF 写道 Descriptio...原创 2011-11-09 16:56:32 · 672 阅读 · 0 评论 -
Handler,MessageQueue,Message 【译】
android.os.Handler A Handler allows you to send and process Message and Runnable objects associated with a thread's MessageQueue. Each Handler instance is associated with a single thread and...2011-11-15 15:34:25 · 122 阅读 · 0 评论 -
ndk source Downloading the Source Tree 【部分译】
http://source.android.com/source/downloading.html 在ubuntu Linux下,如果没有安装git,curl,那么执行下面2个命令 sudo apt-get install git sudo apt-get install curl 然后按照下面执行(需要注册一个google账户,最好gmail) Downloading th...原创 2011-11-16 17:56:43 · 221 阅读 · 0 评论