码迷,mamicode.com
首页 >  
搜索关键字:android自定义系统分享    ( 2个结果
Android调用系统分享分享内容到其他应用,不使用系统的ActionBar的弹窗,完全自定义
Android分享内容到其他应用,调用系统的Dialog或者ActionBar的弹窗都不太自由,限制太大,这里我提供一个完全自定界面的,可以弹窗,也可以直接在Activity或者Fragment里边自定义界面。这里展示一个关键类的代码,做了封装处理,源码在: /** * @author YOLANDA * @Time 2015年4月5日 下午1:03:11 */ public class...
分类:移动开发   时间:2015-04-05 14:41:46    阅读次数:298
Android自定义系统分享面板
在Android中实现分享有一种比较方便的方式,调用系统的分享面板来分享我们的应用。最基本的实现如下: public Intent getShareIntent(){ Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_TEXT, "这是测试分享...
分类:移动开发   时间:2014-11-17 17:55:36    阅读次数:248
2条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!