Intent intent = new Intent();
String sex = "yang";
Bundle bundle = new Bundle();
bundle.putString("Sex",sex);
                bundle.putInt("i",10);
intent.putExtras(bundle);
intent.setAction("android.intent.action.test");
startService(intent);