android
yelidemaomao
Android开发者QQ群:80621131
欢迎加入,共同学习,共同发展.
展开
-
android.intent.action.PACKAGE_ADDED
String android.content.Intent.ACTION_PACKAGE_ADDED = "android.intent.action.PACKAGE_ADDED"Broadcast Action: A new application package has been installed on the device. The data contains the name o...原创 2011-01-13 19:41:00 · 5353 阅读 · 2 评论 -
android.intent.action.PACKAGE_REMOVED
String android.content.Intent.ACTION_PACKAGE_REMOVED = "android.intent.action.PACKAGE_REMOVED"Broadcast Action: An existing application package has been removed from the device. The data contains ...原创 2011-01-13 19:45:36 · 2150 阅读 · 0 评论 -
android.intent.action.PACKAGE_CHANGED
String android.content.Intent.ACTION_PACKAGE_CHANGED = "android.intent.action.PACKAGE_CHANGED"Broadcast Action: An existing application package has been changed (e.g. a component has been enabled ...原创 2011-01-13 19:55:48 · 1778 阅读 · 0 评论 -
android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE
String android.content.Intent.ACTION_EXTERNAL_APPLICATIONS_AVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_AVAILABLE"Broadcast Action: Resources for a set of packages (which were previous...原创 2011-01-13 20:15:34 · 25046 阅读 · 0 评论 -
android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE
String android.content.Intent.ACTION_EXTERNAL_APPLICATIONS_UNAVAILABLE = "android.intent.action.EXTERNAL_APPLICATIONS_UNAVAILABLE"Broadcast Action: Resources for a set of packages are currently un...原创 2011-01-13 20:21:00 · 10798 阅读 · 0 评论 -
Launcher中取得桌面所有图标的左上角坐标
[code="java"]/** * 取得所有桌面图标的左上角坐标值 * @ author: 叶里的猫 *@return 返回坐标数组 */ public int [][] getAllChildCoordinate(){ int size = this.getChildCount() ; int ...2011-02-17 11:49:08 · 205 阅读 · 0 评论