码迷,mamicode.com
首页 > 移动开发 > 详细

android分享应用工具类

时间:2014-12-09 14:06:13      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:android   分享应用   

/**
	 * 分享应用.
	 */
	private void shareApk() {
		Intent intent = new Intent();
		intent.setAction("android.intent.action.SEND");
		intent.addCategory("android.intent.category.DEFAULT");
		intent.setType("text/plain");
		intent.putExtra(Intent.EXTRA_TEXT,
				"推荐你使用一款软件.名称为:" + selectedAppInfo.getAppname() + ",版本:"
						+ selectedAppInfo.getVersion());
		startActivity(intent);
	}

android分享应用工具类

标签:android   分享应用   

原文地址:http://blog.csdn.net/u014600432/article/details/41822449

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!