
Android
文章平均质量分 78
BlueSy2008
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Android开发知识汇总
1. android单实例运行方法 我们都知道Android平台没有任务管理器,而内部App维护者一个Activity history stack来实现窗口显示和销毁,对于常规从快捷方式运行来看都是startActivity可能会使用FLAG_ACTIVITY_NEW_TA转载 2011-10-14 17:33:32 · 1632 阅读 · 0 评论 -
手动编译打包Android APP
一,准备ant ant 官网可下载 http://ant.apache.org/ ant 环境配置: 1。解压ant的包到本地目录。 2。在环境变量中设置ANT_HOME,值为你的安装目录。 3。把ANT_HOME/bin加到你系统环境的path。 更多的介绍可以去google相信有很多 二,详细步骤和说明,这里我们要知道一些Android命令。 前提条件已转载 2011-12-22 10:15:07 · 737 阅读 · 0 评论 -
Android签名过程
2、为什么要给Android应用程序签名? 如果只能用一句简单的话语来回答这个问题的话,我会说:“这是Android系统所要求的”。 Android系统要求每一个Android应用程序必须要经过数字签名才能够安装到系统中,也就是说如果一个Android应用程序没有经过数字签名,是没有办法安装到系统中的!Android通过数字签名来标识应用程序的作者和在应用程序之间建立信转载 2011-12-22 14:49:10 · 502 阅读 · 0 评论 -
git gui diff/merge tool
Download and Install P4V Download the free Perforce Visual Client dmg from here. Once it’s downloaded, copy p4merge from the disk image to your /Applications directory. Write some simple shell sc转载 2011-12-28 11:11:06 · 766 阅读 · 0 评论 -
Androi SQL语句注意事项
注意引号: 错误: mDbRead.query(WEBSITE_TABLE, new String[]{KEY_WEBNAME}, KEY_WEBURL + "=" + webURL, null, null, null, null); 正确: mDbRead.query(WEBSITE_TABLE, new String[]{KEY_WEBNAME}, KEY_WEBURL原创 2012-02-09 11:18:08 · 422 阅读 · 0 评论 -
Android砖头快
1. 确认对话框 String message = getString(R.string.delete_message).replace("%s", username); new AlertDialog.Builder(AccountDisplay.this) .setTitle(getText(R.string.delete))原创 2012-02-10 10:47:04 · 719 阅读 · 0 评论