
Mobile Program
文章平均质量分 57
javaloverleo
这个作者很懒,什么都没留下…
展开
-
[Android]helloworld
helloworld android 开发入门 http://bbs.weiphone.com/read-htm-tid-565227.html Android DDMS如何使用 http://apps.hi.baidu.com/share/detail/7081564 屏幕切换方法 http://www.abcfun.cn/n726c12.aspx...原创 2010-08-24 05:19:32 · 105 阅读 · 0 评论 -
android环境搭建
http://apps.hi.baidu.com/share/detail/1937413 1.Install JDK 1.5 or 1.6 2.Install Eclipse 3.Install ADT to Eclipse, then Help->Software Updates->Available Software->Install, input "...原创 2010-12-10 10:08:11 · 106 阅读 · 0 评论 -
Android学习笔记 --- Terms and installation memo
ADT Android Developer Tools (Eclipse plug-in) AVD Android Emulator Device DDMS Android ships with a debugging tool called the Dalvik Debug Monitor Server (DDMS) http://developer.android.com...原创 2011-07-22 12:42:34 · 139 阅读 · 0 评论 -
[helloAndroid 读书笔记] key concepts
chapter 2.3 A few objects are defined in the Android SDK that every developer needs to be familiar with. The most important ones are activities, intents, services , and content providers. Ac...原创 2011-11-17 08:11:10 · 121 阅读 · 0 评论 -
【转】Android -- 探究Android的多分辨率支持以及各种类型图标尺寸大小
术语和概念 屏幕尺寸 屏幕的物理尺寸,以屏幕的对角线长度作为依据(比如 2.8寸, 3.5寸)。 简而言之, Android把所有的屏幕尺寸简化为三大类:大,正常,和小。 程序可以针对这三种尺寸的屏幕提供三种不同的布局方案,然后系统会负责把你的布局方案以合适的方式渲染到对应的屏幕上,这个过程是不需要程序员用代码来干预的。 屏幕长宽比 ...原创 2011-11-21 14:42:47 · 163 阅读 · 0 评论 -
【转】Android --Intent的几种用法
Intent的几种用法 下面列出几种Intent的用法显示网页: 1.Uri uri = Uri.parse("http://www.google.com"); 2.Intent it = new Intent(Intent.ACTION_VIEW,uri); 3.startActivity(it); Or Intent intent = new Intent(Intent.AC...原创 2011-11-22 16:13:56 · 164 阅读 · 0 评论 -
【转】Android --权限大全
android权限大全 e.g. <uses-permission android:name="android.permission.INTERNET" /> 访问登记属性 android.permission.ACCESS_CHECKIN_PROPERTIES ,读取或写入登记check-in数据库属性表的权限 获取错略位置 a...原创 2011-11-22 22:05:02 · 120 阅读 · 0 评论