android-如何在发送列表中添加应用显示

问题描述

如何在发送列表中添加应用显示
应用是下载图片到本机服务器上,怎么样能在发送列表中显示应用列表?

Intent share = new Intent(Intent.ACTION_SEND);share.setType(""image/jpeg"");share.putExtra(Intent.EXTRA_STREAM Uri.parse(FilePath));startActivity(Intent.createChooser(shareShare Image""));

解决方案

在manifest中添加:

<intent-filter>    <action android:name=""android.intent.action.SEND""></action>    <category android:name=""android.intent.category.DEFAULT"" />    <data android:mimeType=""image/jpeg"" /></intent-filter>

然后mainfest类似这样:

<application android:name=""MyApplication"" android:allowBackup=""true"" android:icon=""@drawable/ic_launcher""android:label=""@string/app_name"" android:theme=""@style/AppTheme"">    <activity android:name=""com.example.arcasample.MainActivity"" android:label=""@string/app_name"">        <intent-filter>            <action android:name=""android.intent.action.MAIN"" />            <category android:name=""android.intent.category.LAUNCHER"" />        </intent-filter>        <intent-filter>            <action android:name=""android.intent.action.SEND""></action>            <category android:name=""android.intent.category.DEFAULT"" />            <data android:mimeType=""image/jpeg"" />        </intent-filter>    </activity></application>
时间: 2025-01-04 04:48:44

android-如何在发送列表中添加应用显示的相关文章

如何添加 android 程序并显示在发送列表中?

问题描述 如何添加 android 程序并显示在发送列表中? 我实现了一个应用程序,把照片更新到我自己的服务器上. 当实现下面的代码时,我想让程序能在发送列表中显示.如何实现? Intent share = new Intent(Intent.ACTION_SEND); share.setType("image/jpeg"); share.putExtra(Intent.EXTRA_STREAM, Uri.parse(FilePath)); startActivity(Intent.c

dedecms在栏目列表中添加统计文档数量调用标签

dedecms在栏目列表中添加统计文档数量调用标签,实现的方法还是非常简单的,只需要做一些简单的修改即可实现我们所需要的功能. 方法如下: 打开include/extend.func.php文件,在最后一行?的上面添加以下内容: function GetTotalArc($tid){global $dsql;$sql = GetSonIds($tid);$row = $dsql->GetOne("Select count(id) as dd From dede_archives where

listview-在列表中添加值后,却检索不出来

问题描述 在列表中添加值后,却检索不出来 在一个列表中我使用add(intObject)方法添加了一个值,但是当我使用get(int)方法检索值的时候,却还是获得上次添加的值,并不是这次新添加的值.谁能给出适当的建议呢?我使用的下面的代码: public static List getCompanyName(String user_id) { List<CustomerList> fetchDatefromID = new ArrayList<CustomerList>(); Cu

Android实现动态向Gallery中添加图片及倒影与3D效果示例_Android

本文实例讲述了Android实现动态向Gallery中添加图片及倒影与3D效果的方法.分享给大家供大家参考,具体如下: 在Android中gallery可以提供一个很好的显示图片的方式,实现上面的效果以及动态添加数据库或者网络上下载下来的图片资源.我们首先实现一个自定义的Gallery类. MyGallery.java: package nate.android.Service; import android.content.Context; import android.graphics.Ca

Android实现动态向Gallery中添加图片及倒影与3D效果示例

本文实例讲述了Android实现动态向Gallery中添加图片及倒影与3D效果的方法.分享给大家供大家参考,具体如下: 在Android中gallery可以提供一个很好的显示图片的方式,实现上面的效果以及动态添加数据库或者网络上下载下来的图片资源.我们首先实现一个自定义的Gallery类. MyGallery.java: package nate.android.Service; import android.content.Context; import android.graphics.Ca

在GridView列表中使用图片显示记录是否包含附件

在我的前面很多文章中,都介绍过通用附件模块的管理,本篇随笔主要介绍在一些应用模块中的列表展示中,包含附件的记录,在GridView列表界面中使用图标来快速显示是否有附件的情况. 1.通用附件模块的应用界面效果 例如在我的<通用人员信息管理模块>中(可以参考随笔<Winform开发框架之通用人员信息管理>.<Winform开发框架之通用人员信息管理实现代码介绍>,很多都使用了<通用附件管理模块>(可以参考<Winform开发框架之附件管理应用>来处

label-&amp;amp;lt;Jtree&amp;amp;gt;,JPanel中添加JLabel显示问题

问题描述 <Jtree>,JPanel中添加JLabel显示问题 public java.awt.Component getTreeCellRendererComponent(JTree tree, Object value, boolean selected, boolean expanded, boolean leaf, int row, boolean hasFocus) { java.awt.Component component = null; if(selected) { Defa

Android中给联系人列表中添加2个button,如何进行嵌套布局

问题描述 小女子新手,因课业要求编android程序应用.在网上搜了个获取系统联系人列表,用的是RelativeLayout,点击直接拨打电话,想进行些修改,在list下添加2个button,分别连接到2个activity,搜到的代码如下:<RelativeLayoutandroid:layout_width="fill_parent"android:layout_height="wrap_content"><ImageViewandroid:id

三星I9300手机发送电子邮件中添加附件

 注意:如果要实现发送电子邮件功能,需要先设置好您的电子邮件账户才可以操作.设置邮件账户操作,请参考常见问题解答中的GT-I9300如何设置我的电子邮件账户.   1.在待机模式下,然后我们找到[应用程序]点击进入,如图.     2.然后我们找到[电子邮件]点击进入,如图.     3. 选择[新建邮件]图标.     4.选择[附件]图标,然后选择您要发送的项目.     5.上述操作添加完毕后,输入收件人和主题,然后点击信封加箭头图标,邮件就发送了.