02 2014 档案

摘要:Genymotion provides a shell that enables you to script the modification of sensor states. Command line options -h: print help -r ip_address: connect to specific Genymotion virtual device ... 阅读全文
posted @ 2014-02-28 09:47 blackBox 阅读(2555) 评论(0) 推荐(0)
摘要:1、调用拨号程序:1 // 给移动客服10086拨打电话2 Uri uri = Uri.parse("tel:10086");3 Intent intent = new Intent(Intent.ACTION_DIAL, uri);4 startActivity(intent);2、调用彩信或短信: 1 // 给10086发送内容为“Hello”的短信 2 Uri uri = Uri.parse("smsto:10086"); 3 Intent intent = new Intent(Intent.ACTION_SENDTO, uri); 4 inte 阅读全文
posted @ 2014-02-19 09:19 blackBox 阅读(469) 评论(2) 推荐(0)