iis服务器助手广告广告
返回顶部
首页 > 资讯 > 移动开发 >Android编程实现自定义分享列表ACTION_SEND功能的方法
  • 180
分享到

Android编程实现自定义分享列表ACTION_SEND功能的方法

自定义send方法actionAndroid 2022-06-06 04:06:31 180人浏览 薄情痞子
摘要

本文实例讲述了Android编程实现自定义分享列表ACTioN_SEND功能的方法。分享给大家供大家参考,具体如下: 看到最近都在做自定义的东西,因为比较灵活,还可以摆脱系统自

本文实例讲述了Android编程实现自定义分享列表ACTioN_SEND功能的方法。分享给大家供大家参考,具体如下:

看到最近都在做自定义的东西,因为比较灵活,还可以摆脱系统自身不怎么漂亮的UI,(大家都懂得)所以自己也做了下自定义的分享列表,用PopupWindow的方式弹出。

先上效果图:

1、布局:

popup_share.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="Http://schemas.android.com/apk/res/android"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content" >
 <ListView
    android:id="@+id/share_list"
    android:background="#2F4F4F"
    android:fadingEdge="none"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:cacheColorHint="#00000000"
    android:divider="#E2DD75"
    android:dividerHeight="1.0dip"
    android:headerDividersEnabled="true"
    android:footerDividersEnabled="false" />
</LinearLayout>

popup_share_item.xml


<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:gravity="center_vertical"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:padding="2.0dip" >
  <ImageView
    android:id="@+id/share_item_icon"
    android:layout_width="32.0dip"
    android:layout_height="32.0dip"
    android:layout_marginLeft="3.0dip"
    android:scaleType="fitXY" />
  <TextView
    android:id="@+id/share_item_name"
    android:gravity="center"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="分享"
    android:textColor="@color/white"
    android:singleLine="true"
    android:textSize="@dimen/s_size"
    android:layout_marginLeft="3.0dip"
    android:layout_marginRight="3.0dip" />
</LinearLayout>

2、查询手机内所有支持分享的应用列表


public List<ResolveInfo> getShareApps(Context context) {
    List<ResolveInfo> mApps = new ArrayList<ResolveInfo>();
    Intent intent = new Intent(Intent.ACTION_SEND, null);
    intent.addCateGory(Intent.CATEGORY_DEFAULT);
    intent.setType("text/plain");
//   intent.setType("**");
          //这里就是组织内容了,
          shareIntent.putExtra(Intent.EXTRA_TEXT, "测试,这里发送推广地址");
          shareIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
          DetailExchangeActivity.this.startActivity(shareIntent);
        }
      });
      sharePopupWindow = new PopupWindow(view,
          (int)(160 * density), LinearLayout.LayoutParams.WRAP_CONTENT);
    }
    //使其聚焦
    sharePopupWindow.setFocusable(true);
    //设置允许在外点击消失
    sharePopupWindow.setOutsideTouchable(true);
    // 这个是为了点击“返回Back”也能使其消失,并且并不会影响你的背景
    sharePopupWindow.setBackgroundDrawable(new BitmapDrawable());
    //xoff,yoff基于anchor的左下角进行偏移。正数表示下方右边,负数表示(上方左边)
    //showAsDropDown(parent, xPos, yPos);
    sharePopupWindow.showAsDropDown(parent, -5, 5);
}

注:ShareCustomAdapter自己建一个就行了。(有一个图标和一个分享的名)

更多关于Android相关内容感兴趣的读者可查看本站专题:《Android开发入门与进阶教程》、《Android调试技巧与常见问题解决方法汇总》、《Android多媒体操作技巧汇总(音频,视频,录音等)》、《Android基本组件用法总结》、《Android视图View技巧总结》、《Android布局layout技巧总结》及《Android控件用法总结》

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

您可能感兴趣的文章:Android使用Intent.ACTION_SEND分享图片和文字内容的示例代码android中Intent传值与Bundle传值的区别详解android教程之intent的action属性使用示例(intent发短信)android中intent传递list或者对象的方法Android Intent的几种用法详细解析Android 广播大全 Intent Action 事件详解详解Android中IntentService的使用方法Android中使用IntentService创建后台服务实例Android利用Intent.ACTION_SEND进行分享


--结束END--

本文标题: Android编程实现自定义分享列表ACTION_SEND功能的方法

本文链接: https://www.lsjlt.com/news/22158.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

本篇文章演示代码以及资料文档资料下载

下载Word文档到电脑,方便收藏和打印~

下载Word文档
猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作