Android 程序启动另一个程序

来源:互联网 发布:057188157858是淘宝网 编辑:程序博客网 时间:2024/05/21 09:19

    intent = new Intent( ); 

   ComponentName comp = new ComponentName("com.android.mms", "com.android.mms.ui.ConversationList");
   intent.setComponent(comp); 
   intent.setAction("android.intent.action.VIEW"); 
   startActivity(intent);// ---启动另一个软件,

 

  Intent it = new Intent(Intent.ACTION_VIEW);  
  it.putExtra("sms_body", "The SMS text");   
  it.setType("vnd.android-dir/mms-sms");  
  startActivity(it); //--启动

 

0 0