Intent intent=newIntent();//将view强转为ButtonButton button =(Button) v;//根据button的idswitch(button.getId()){//如果是拨打电话按钮caseR.id.call://设置Action行为属性intent.setAction(intent.ACTION_DIAL);//设置数据 后面123456789是默认要拨打的电话intent.setData(Uri.parse("tel:123456789")); sta...
Action 的值在Android中有很多预定义,如果你想直接转到你自己定义的Intent接收者,你可以在接收者的IntentFilter 中加入一个自定义的Action值(同时要设定 Category值为"android.intent.category.DEFAULT"),在你的Intent中设定该值为Intent的 Action,就直接能跳转到你自己的Intent接收者中。因为这个Action在系统中是唯一的...
Intent intent= new Intent(Intent.ACTION_DIAL); intent.setClassName("com.android.contacts","com.android.contacts.DialtactsActivity"); startActivity(intent); //系统 通话记录 界面 Intent intent =new Intent(); intent.setAction("android.intent.action.CALL_BUTTON"); startActivity(intent); //拨号 U...
Intent intent = new Intent(Intent.ACTION_CALL_BUTTON);startActivity(intent); 9 Intent.ACTION_CHOOSER String: android.intent.action.CHOOSER显示一个activity选择器,允许用户在进程之前选择他们想要的,与之对应的是Intent.ACTION_GET_CONTENT. 10. Intent.ACTION_GET_CONTENT String: android.intent.action.GET_C...
Action 的值在Android中有很多预定义,如果想直接转到自己定义的Intent接收者,可以在接收者的IntentFilter 中加入一个自定义的Action值(同时要设定 Category值为"android.intent.category.DEFAULT"),在你的Intent中设定该值为Intent的 Action就直接能跳转到你自己的Intent接收者中,因为这个Action在系统中是...
switch(button.getId()) //如果是拨打电话按钮 case R.id.call: //设置Action行为属性 intent.setAction(intent.ACTION_DIAL); //设置数据 后面123456789是默认要拨打的电话 intent.setData(Uri.parse("tel:123456789")); startActivity(intent); break; ...
Action 的值在Android中有很多预定义,如果想直接转到自己定义的Intent接收者,可以在接收者的IntentFilter 中加入一个自定义的Action值(同时要设定 Category值为"android.intent.category.DEFAULT"),在你的Intent中设定该值为Intent的 Action就直接能跳转到你自己的Intent接收者中,因为这个Action在系统中是唯一的。
Activity Action: The user pressed the "call" button to go to the dialer or other appropriate UI for placing a call. Input: Nothing. Output: Nothing. Java documentation for android.content.Intent.ACTION_CALL_BUTTON. Portions of this page are modifications bas...
Android Intent 跳转 1.跳转拨号页面 Intent intent=new Intent(); intent.setAction(Intent.ACTION_CALL_BUTTON); startActivity(intent); 2.跳转拨号页面(带号码) Uri uri = Uri.parse("tel:18510515551"); Intent intent = new Intent(Intent.ACTION_DIAL, uri);...
EXTRA_KEY_EVENT:以KeyEvent对象方式存放触发Intent的按键。 EXTRA_PHONE_NUMBER:存放调用ACTION_CALL时的电话号码。 关于Extra属性的使用,会在学习Activity数据传递的时候详细讲解,此处不做过多介绍。 六、Flag属性 Intent的Flag属性用于为该Intent添加一些额外的控制旗标,Intent可调用addFlags()方法来添加控制旗标。其实...