- 浏览: 128488 次
- 性别:
- 来自: 杭州
最新评论
-
mzba520:
这样会导致拖动列表的时候,只要有链接长按事件会被触发。
Android TextView中增加超链接的匹配后,导致非超链接区域点击失效的问题解决方案 -
cfyme:
请问一下,我成功发送了一个会议邀请,怎么取消会议邀请,怎么更改 ...
通过ical4j与javamail实现会议邀请总结 -
xyy_zero:
有没有个demo?
Android中的网络时间同步
文章列表
LiveWallpaper intent
Intent i = new Intent(WallpaperManager.ACTION_LIVE_WALLPAPER_CHOOSER);
Wallpaper intent
Intent i = new Intent(Intent.ACTION_SET_WALLPAPER);
android学习示例代码转自: http://www.uuroid.com/?p=1351.Android团队提供的示例项目
如果不是从学习Android SDK中提供的那些样例代码开始,可能没有更好的方法来掌握在Android这个框架上开发。由Android的核心开发团队提供了15个优秀的示例项 目,包含了游戏、图像处理、时间显示、开始菜单快捷方式等。地址:http://code.google.com/p/apps-for-android/svn:http://apps-for-android.googlecode.com/svn/trunk/
2.Remote Droid
Remot ...
ical4j
http://sourceforge.net/projects/ical4j/files/
iCal4j is a Java library used to read and write iCalendar data streams as defined in RFC2445. The iCalendar standard provides a common data format used to store information about calendar-specific data such as events, appointments, to-do lists, e ...
HTTP Client
http://hc.apache.org/
abc
https://studio.plugins.atlassian.com/source/cru
opencustomer
http://www.opencustomer.org/
computerworlduk
http://www.computerworlduk.com/
开源社区
http://www.oschina.net/
jamendo
http
://jamendo.googlecode.com/svn/tr ...
Can I use this Intent?
Posted by Romain Guy on 05 January 2009 at 6:00 AM
http://android-developers.blogspot.com/2009/01/can-i-use-this-intent.html
Android offers a very powerful and yet easy to use tool called intents. An intent can be use to turn applications into high-level libraries and ...
如果ListView中的单个Item的view中存在checkbox,button等view,会导致ListView.setOnItemClickListener无效
解决方法:
在checkbox、button对应的view处加android:focusable="false" android:clickable="false" android:focusableInTouchMode="false"
其中focusable是关键
android.os.AsyncTask
三个泛型:
Param ,任务执行器需要的数据类型
Progress 后台计算中使用的进度单位数据类型
Result 后台计算返回结果的数据类型
有些参数是可以设置为不使用的,只要传递为Void型即可,比如AsyncTask
四个步骤:
onPreExecute(),执行预处理,它运行于UI线程,可以为后台任务做一些准备工作,比如绘制一个进度条控件。
doInBackground(Params...),后台进程执行的具体计算在这里实
现,doInBackground(Params...)是AsyncTas ...
一些术语
IME
—-Input Method Editor 也就是常说的“输入法”
Screen size
—-Actual physical size, measured as the screen’s diagonal
Resolution
—-The total number of physical pixels on a screen. Note that, although resolution is often expressed as width
x height
, resolution does not imply a specific aspect r ...
移动国家号(MCC)
定义
移动国家号(MCC)由三位十进制数组成,它表明移动用户(或系统)归属的国家。
格式
移动国家号(MCC)由三个十进制数组成,编码范围为十进制的000-999
传送
移动国家号用于国 ...
Home是Android设备开启后第一个与用户交互的应用程序。在其他应用程序运行于前台时,Home也将一直运行于后台。当其他应用程序都退出 时,又要返回到Home的用户界面以供用户进行下一步操作,如在应用程序列表中选择要启动的程序。除了应用程序列表,在Android系统自带的Home 程序Launcher当中,还有一块类似于PC上桌面概念的区域,如图下图所示。
在屏幕分辨率为320×480像素的Android设备上,竖屏时这个桌面由3块320×400像素的区域构成,而每块区域即每屏又被划分成了16 个80×100像素的单元格;横屏时则是由3块424×296像素的区域构成,每屏也是被划分成了 ...
1. SIM卡的结构和类型
SIM卡是带有微处理器的智能芯片卡,它的构成是以下几个模块:
--- CPU
--- 程序存储器(ROM)
--- 工作存储器(RAM)
--- 数据存储器(EPROM或E2PROM)
--- 串行通信单元
这五个模块必须集成在一块集成电路 ...