前言
本代码是aide分享代码,为aide软件增加一个分享功能。分享软件给QQ或者微信好友。
代码
Intent shareIntent = new Intent(); shareIntent.setAction(Intent.ACTION_SEND); Toast.makeText(MainActivity.this,"好东西要分享哦",Toast.LENGTH_SHORT).show(); shareIntent.putExtra(Intent.EXTRA_TEXT, " 你好我正在使用漫夜iApp"); shareIntent.setType("text/plain"); startActivity(Intent.createChooser(shareIntent, "分享到")); }