android
Capricornlg
这个作者很懒,什么都没留下…
展开
-
移动开发APP开发细节分析
1. 了解应用市场概况 开发者对市场状况的了解与APP的成功紧密相连,目前,App Store和Google Play可以说是移动应用最为丰富的应用生态,像苹果的下载统计表单会记录热门应用的下载信息,若开发者有规律的回顾这些表单,并相应地记录自己应用的潜在发展趋势,是有利于应用设计、营销以及多种价格模式的更好理解和领悟的。 2. 明确应用开发方向 产品方向是APP开发的原创 2014-04-15 17:33:26 · 1104 阅读 · 0 评论 -
android 模拟器启动报错:Failed to open the HAX device!
我安装的Android4.1在启动模拟器时遇到下面的问题:emulator: Failed to open the HAX device! HAX is not working and emulator runs in emulation mode emulator: Open HAX device failed 这个问题是因为在创建AVD时相关设置不正确,应该根据自己原创 2014-04-16 10:38:49 · 5454 阅读 · 0 评论 -
android中Intent的介绍和常见用法总结
1.调用拨号程序 [java] view plaincopy// 给移动客服10086拨打电话 Uri uri = Uri.parse("tel:10086"); Intent intent = new Intent(Intent.ACTION_DIAL, uri); startActivity(intent);转载 2014-04-16 10:40:42 · 849 阅读 · 0 评论