E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
createChooser
ShareActionProvider 分享API之 DynamicShareActionProvider
公司项目需要用到分享功能,没多大要求,只需要用系统自带的Intent分享,
createChooser
一个选择器即可,原本一个挺简单的需求,却因为Facebook无法支持Intent.EXTRA_SUBJECT
风华是一指流砂
·
2023-10-20 17:29
Android例子
随手记
Provider
Android
分享
隐式Intent启动,设置响应intent应用列表标题
我们启动一个隐式Intent,系统会把能够响应这个intent的应用列出来,通常默认的标题是:“分享方式”.如图:image.pngIntent.
createChooser
(Intenttarget,Stringtitle
2fab4u
·
2023-08-21 11:08
java.lang.IllegalArgumentException Unknown URI: content://downloads/public_downloads/ 解决方案
intent.setType("video/*");intent.addCategory(intent.CATEGORY_OPENABLE);startActivityForResult(Intent.
createChooser
equation_l
·
2023-06-19 22:25
安卓开发踩坑记
安卓开发
intent
1.
createChooser
强制打开应用选择Intentsend=newIntent(Intent.ACTION_SEND);send.setType("text/plain");send.putExtra
会飞的狒狒
·
2023-02-05 13:29
记录Intent.
createChooser
导致意图选择弹窗消失的问题
1:使用Intent.
createChooser
的情况代码publicvoidclickBtn(Viewview){Intentintent=newIntent(Intent.ACTION_SEND);
blingbling_5a3f
·
2023-02-03 02:34
android系统分享分析Intent.
createChooser
send.putExtra(Intent.EXTRA_TEXT,url);send.putExtra(Intent.EXTRA_SUBJECT,title);c.startActivity(Intent.
createChooser
简简单单敲代码
·
2022-02-16 13:22
Android处理使用Intent分享图片,以及在微信7.0版本出现“获取资源失败,无法分享到朋友圈”,导致分享失败的问题
imageIntent.setType("image/jpeg");imageIntent.putExtra(Intent.EXTRA_STREAM,Uri.parse(path));startActivity(Intent.
createChooser
苏墨白梦觉泪满青衫湿
·
2021-06-24 11:22
android 跳转相册选择图片并返回展示
intent.setType("image/*");intent.setAction(Intent.ACTION_GET_CONTENT);startActivityForResult(Intent.
createChooser
overhaha
·
2021-05-02 23:42
打开文件管理器选择文件
Intent.ACTION_GET_CONTENT);intent.setType("/");intent.addCategory(Intent.CATEGORY_OPENABLE);Intentchooser=Intent.
createChooser
寒冷de星空
·
2021-04-18 16:16
Android应用内最简单设置手机桌面背景图方法
voidstartWallpaper(){finalIntentpickWallpaper=newIntent(Intent.ACTION_SET_WALLPAPER);Intentchooser=Intent.
createChooser
幻化万千戏红尘
·
2020-09-10 18:09
Android学习之路
Android中实现APP文本内容的分享发送与接收方法简述
谨记(指定选择器Intent.
createChooser
())开始今天的内容前,先闲聊一下:(1)突然有一天头脑风暴,对很多问题有了新的看法和见解,迫不及待的想要分享给大家,文档已经写好了,我需要通过微信或者
潘侯爷
·
2020-08-09 22:52
Android
技术分享
Android 分享功能实现与 QQ 纯文本分享
通过系统分享组件实现分享功能Intent.
createChooser
()方法用来弹出系统分享列表。
createChooser
陈三哥
·
2020-08-09 20:08
移动开发
Android
系统运维
分享功能
Android 调用系统分享(不使用第三方),指定QQ、微信等
;intent.setType("text/plain");intent.putExtra(Intent.EXTRA_TEXT,"Thisisatext");startActivity(Intent.
createChooser
Errol_King
·
2020-08-08 22:37
Android从入门到放弃
Android使用系统Intent实现分享功能及将应用加入分享列表
Intent.
createChooser
()方法用来弹出系统分享列表。
chenliujiang1989
·
2020-07-29 17:53
Android分享图片
Intent.ACTION_SEND);intent.putExtra(Intent.EXTRA_STREAM,uri);intent.setType("image/*");startActivity(Intent.
createChooser
附庸风雅_
·
2020-04-14 08:04
java.lang.IllegalArgumentException Unknown URI: content://downloads/public_downloads/ 解决方案
intent.setType("video/*");intent.addCategory(intent.CATEGORY_OPENABLE);startActivityForResult(Intent.
createChooser
equationl
·
2020-02-11 22:41
自定义
CreateChooser
,实现携带附件邮件的发送。
场景当我们的应用需求里面,需要发送邮件的时候。我们通常并不会自己去实现一个邮件App,而是通过隐式Intent的方式转发到其他App,我们只是需要添加一些相应的数据而已。Android的官方文档告诉我们,发送邮件我们可以通过如下三个Action:ACTION_SENDTO(适用于不带附件)ACTION_SEND(适用于带一个附件)ACTION_SEND_MULTIPLE`(适用于带多个附件)通过A
WeberLisper
·
2020-02-06 17:54
使用系统自带分享时遇到的坑
Intent.ACTION_SEND);intent.setType("text/plain");intent.putExtra(Intent.EXTRA_TEXT,mShareUrl);startActivity(Intent.
createChooser
hai_phon
·
2018-11-14 17:25
简述Android中实现APP文本内容的分享发送与接收方法
谨记(指定选择器Intent.
createChooser
())开始今天的内容前,先闲聊一下:(1)突然有一天头脑风暴,对很多问题有了新的看法和见解,迫不及待的想要分享给大家,文档已经写好了,我需要通过微信或者
潘侯爷
·
2016-12-19 15:18
安卓发送邮件————(非启动第三方app)
(主要测试功能,所以登录的邮箱【发件人】和接收的邮箱【收件人】我都是写死了的)而不会还要调用第三方的邮箱app来给你发送邮件(例:startActivity(Intent.
createChooser
(i
aowoWolf
·
2016-12-02 10:09
android
android通过文件管理器选择文件
intent.setType("*/*");intent.addCategory(Intent.CATEGORY_OPENABLE);try{startActivityForResult(Intent.
createChooser
n.wang
·
2016-11-22 23:00
Android 打开文件管理器,并返回选中文件的path
intent.setType("*/*");intent.addCategory(Intent.CATEGORY_OPENABLE);try{startActivityForResult(Intent.
createChooser
Louis_yexing
·
2016-06-15 17:54
如何自定义Intent.
createChooser
的显示结果
Intent是android核心的概念之一,Intent为android系统提供了真正的开放。android的姿态是开放了,但却没有做到位。 拿“发邮件”这一功能来说,为了使用Intent机制来发送邮件,调用方需要知道Intent的规则,如action、uri、MIMEtype和category。但是在哪里能找到这些规则呢?官方文档里没有,还好能求助google,然后就发现StackOverf
·
2015-11-12 12:55
intent
【起航计划 021】2015 起航计划 Android APIDemo的魔鬼步伐 20 App->Intents
createChooser
Intents 这个例子的代码非常简单: public void onGetMusic(View view) { Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("audio/*"); startActivity(Inte
·
2015-11-02 09:36
android
Intent.
createchooser
使用r.sting
startActivity(Intent.
createChooser
(i, "select email application")); 国际化的时候,希望使用资源文件 startActivity
·
2015-10-30 13:24
intent
Android使用系统Intent实现分享功能及将应用加入分享列表
Intent.
createChooser
()方法用来弹出系统分享列表。 查看Intent对应的组件是否存在,可查看Android判断Intent是否存在,是否可用 1、应用增
·
2015-10-23 08:04
android
Android 分享功能实现与 QQ 纯文本分享
通过系统分享组件实现分享功能Intent.
createChooser
()方法用来弹出系统分享列表。
brokge
·
2015-10-16 13:00
android
qq
应用
分享
纯文本
Android更换头像弹框之
createChooser
先看看恶心的smali,简单分析了一下.methodpublicstatictakeOrChoosePhoto(Landroid/app/Activity;I)V .locals14 .paramp0,"context" #Landroid/app/Activity; .paramp1,"requestCode" #I .prologue .line148 sget-objectv
sizeof
·
2015-06-11 11:00
android本地分享
;startActivity(Intent.
createChooser
(intent,"分享标题")
找个昵称不容易
·
2015-05-26 15:00
分享
Android本地
调用系统分享功能
; intent.setType("text/plain"); startActivity(Intent.
createChooser
(intent,"分享"));//分享图片 Uriuri=Uri.fromFi
qiantujava
·
2015-03-11 10:00
android
分享
Android调用新浪微博显示用户信息
uid=3889159184")); IntentchooseIntent=Intent.
createChooser
(intent,"Weibo"); startActivity(chooseIntent
u011272454
·
2015-01-10 23:00
Android Hacks:同时启动多个Intent
很多App都有这样一个分享图片的功能,图片的来源要么是直接从摄像头获取,要么是从相册里面选择,一个很简便实现这种功能的的方式是通过Intent提供的
createChooser
方法,ok,herewego
daveztong
·
2014-11-06 21:00
android
intent
hacks
createChooser
Android Intent.
createChooser
() 妙用
Intent.
createChooser
(ntenttarget,CharSequencetitle)其实大家对该功能第一影响就是ApiDemo里面的其只有区区几行代码提取为:Java代码Intentintent
墨梅
·
2014-03-26 21:00
android Intent.
createChooser
应用选择器
viewplaincopyfinal Intent pickWallpaper = new Intent(Intent.ACTION_SET_WALLPAPER); Intent chooser = Intent.
createChooser
heng615975867
·
2014-02-08 12:00
分享到其他聊天工具
/jpg"); intent.putExtra(Intent.EXTRA_STREAM,Uri.parse(uri)); instance.startActivityForResult(Intent.
createChooser
chaloongjir
·
2013-11-15 17:00
如何自定义Intent.
createChooser
的显示结果
Intent是android核心的概念之一,Intent为android系统提供了真正的开放。android的姿态是开放了,但却没有做到位。拿“发邮件”这一功能来说,为了使用Intent机制来发送邮件,调用方需要知道Intent的规则,如action、uri、MIMEtype和category。但是在哪里能找到这些规则呢?官方文档里没有,还好能求助google,然后就发现StackOverflow
cmoaciopm
·
2013-09-15 12:00
android
intent
email
Android调用系统分享功能以及
createChooser
的使用
http://blog.csdn.net/yanglian20009/article/details/7592117http://www.2cto.com/kf/201210/161580.htmlhttp://blog.csdn.net/about58238/article/details/8116075
编织未来
·
2013-07-17 20:33
android
android分享功能
所以我做了更新,需要的朋友可以去这个地址查看:http://blog.csdn.net/brokge/article/details/49177555在Android系统中如何给应用增加分享功能Intent.
createChooser
陈三哥
·
2013-06-03 10:36
Android
移动开发
分享功能
android分享功能
所以我做了更新,需要的朋友可以去这个地址查看:http://blog.csdn.net/brokge/article/details/49177555在Android系统中如何给应用增加分享功能Intent.
createChooser
brokge
·
2013-06-03 10:00
Android打开不同类型文件
其中openFile方法可以自己改一下通过Intent.
createChooser
()方式来选择打开程序。 背景介绍: MIME:全称Multipurpose Internet
CshBBrain
·
2013-05-06 11:00
android
TextView 和EditText显示图片方法
picture.setType("image/*");picture.addCategory(Intent.CATEGORY_OPENABLE);startActivityForResult(Intent.
createChooser
xiahuawuyu
·
2013-01-24 19:00
android intent使用定义标题
可以使用Intent.
createChooser
()的方法来创建Intent,并传入想要的Sting作为标题。
·
2012-11-23 15:22
android分享,如何移除掉信息这项
做成一个列表以供选择 intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_TEXT,urldown); startActivity(Intent.
createChooser
lijun952048910
·
2012-10-10 12:00
android
Android使用系统Intent实现分享功能及将应用加入分享列表++分享邮箱实现
Intent.
createChooser
()方法用来弹出系统分享列表。
·
2012-09-14 17:00
android
Intent.
createChooser
方法在HTC OneX上意外会引发onConfigurationChanged方法
最后找到问题代码:startActivityForResult(Intent.
createChooser
(intent,getString(R.string.menu_newContact
lilybaobei
·
2012-07-31 17:00
Android使用系统Intent实现分享功能及将应用加入分享列表
Intent.
createChooser
()方法用来弹出系统分享列表。
夏文权
·
2012-07-06 18:00
android
android2.3 api demo 学习系列(19)--App/Intent and Launcher Shortcuts
Intentintent=newIntent(Intent.ACTION_GET_CONTENT); intent.setType("audio/*"); startActivity(Intent.
createChooser
007007jing
·
2012-07-06 09:00
android
api
demo
Android ApiDemos示例解析(23):App->Intents
:Intentintent=newIntent(Intent.ACTION_GET_CONTENT); intent.setType("audio/*"); startActivity(Intent.
createChooser
mapdigit
·
2012-06-12 06:00
android
action
email
Android ApiDemos示例解析(23):App->Intents
:Intentintent=newIntent(Intent.ACTION_GET_CONTENT); intent.setType("audio/*"); startActivity(Intent.
createChooser
isiqi
·
2012-06-12 06:00
android
Android ApiDemos示例解析(23):App->Intents
:Intentintent=newIntent(Intent.ACTION_GET_CONTENT); intent.setType("audio/*"); startActivity(Intent.
createChooser
lyunabc
·
2012-06-12 06:00
android
上一页
1
2
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他