剧终

我与传说有个约会

导航

2010年12月7日 #

安装ADT时遇到的一些错及解决办法

摘要: 安装的时候说依赖项org.eclipse.wst.sse.ui找不到的解决办法.ADT插件依赖于一些Eclipse组件,比如WST, 而Eclipse可能没有自动安装它们,可以通过以下方式来安装Eclipse 3.6 (Helios)Select Help Install New Software...Click the link for Available Software Sites.Ensure there is an update site named Helios. If this is not present, click Add... and enter http://dow 阅读全文

posted @ 2010-12-07 14:01 剧终 阅读(423) 评论(0) 推荐(0)

创建桌面快捷方式

摘要: 创建桌面快捷方式用到下面代码:Intent shortcutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, name);shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(context, R.drawable.desktop));配置文件加上:uses- 阅读全文

posted @ 2010-12-07 10:51 剧终 阅读(406) 评论(0) 推荐(1)