Android内置窗口
1:联系人显示 Intent intent = new Intent("com.android.contacts.action.LIST_CONTACTS"); startActivity(intent);2:拨打电话 Intent intent = new Intent(Intent.ACTION_DIAL,Uri.parse("tel:13222222222"));...