Android 使用Intent

Posted superxuezhazha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 使用Intent相关的知识,希望对你有一定的参考价值。

使用intent可以吊起其他应用

例如发送电子邮件

    public void  sendEmail(View view)
        Intent intent = new Intent(Intent.ACTION_SENDTO);
        intent.setData(Uri.parse("mailto:")); // only email apps should handle this
        //intent.putExtra(Intent.EXTRA_EMAIL, addresses);
        intent.putExtra(Intent.EXTRA_SUBJECT, "订单汇总");
        if (intent.resolveActivity(getPackageManager()) != null) 
            startActivity(intent);
        
    

 

以上是关于Android 使用Intent的主要内容,如果未能解决你的问题,请参考以下文章

Android:权限拒绝:以撤销权限启动 Intent android.permission.CAMERA

在我的意图android中选择联系人后如何删除联系人

未经许可不允许启动服务Intent android.permission.BIND_JOB_SERVICE

Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )

Android 逆向Android 权限 ( Android 逆向中使用的 android.permission 权限 | Android 系统中的 Linux 用户权限 )

Android之SharedPreferences使用