Android开发中应用程序分享功能实例

时间:2022-06-15 07:53:19

本文实例讲述了Android开发中应用程序分享功能。分享给大家供大家参考,具体如下:

?
1
2
3
4
5
6
7
8
9
10
11
Intent shareIntent = new Intent();
shareIntent.setAction(Intent.ACTION_SEND);
//设置类型
shareIntent.setType("text/plain");
//设置分享的主题
shareIntent.putExtra("android.intent.extra.SUBJECT", "分享");
shareIntent.putExtra(Intent.EXTRA_TEXT, "推荐你使用一个程序:"+infos.get(position).getAppName());
shareIntent = Intent.createChooser(shareIntent, "分享");
startActivity(shareIntent);
Log.i(TAG, infos.get(position)+"分享");
break;

希望本文所述对大家Android程序设计有所帮助。