Android获取分享应用列表详解及实例 如果在应用的AndroidManifest.xml中含有 ACTioN_SEND 属性,那就证明该应用可以供第三方应用进行调用分享,那
Android获取分享应用列表详解及实例
如果在应用的AndroidManifest.xml中含有 ACTioN_SEND 属性,那就证明该应用可以供第三方应用进行调用分享,那怎么获取函数该属性的分享列表了,这对我们做应用的非常有用;最近在做该功能,自己也做了下自定义的分享列表,用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, "test");
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自定义PopupWindow仿点击弹出分享功能关于Android实现简单的微信朋友圈分享功能Android编程实现调用系统分享功能示例简述Android中实现APP文本内容的分享发送与接收方法
--结束END--
本文标题: Android获取分享应用列表详解及实例
本文链接: https://lsjlt.com/news/21734.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-21
2023-10-28
2023-10-28
2023-10-27
2023-10-27
2023-10-27
2023-10-27
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0