系统拨号: 对象
Intent intent = new Intent();// 建立Intent对象
intent.setAction(Intent.ACTION_DIAL);// 为Intent设置动做
intent.setData(Uri.parse("tel:" + number));// 为Intent设置数据
startActivity(intent);// 将Intent传递给Activity it
编辑联系人 io
Intent intent = new Intent();
返回HomePage 数据
Intent intent = new Intent();// 建立Intent对象 intent.setAction(Intent.ACTION_MAIN);// 设置Intent动做 intent.addCategory(Intent.CATEGORY_HOME);// 设置Intent种类 startActivity(intent);// 将Intent传递给Activity