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
intent.setType
Android 文件的选择
private void showFileChooser() { Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType
hz_chenwenbiao_91
·
2014-06-03 18:00
android
Intent 的ACTION_CHOOSER和ACTION_PICK_ACTIVITY用法
示例: Intentintent=newIntent(); intent.setAction(Intent.ACTION_SEND);
intent.setType
("text/plain");
jguangyou
·
2014-04-24 14:00
Activity
Android Intent.createChooser() 妙用
CharSequencetitle)其实大家对该功能第一影响就是ApiDemo里面的其只有区区几行代码提取为:Java代码Intentintent=newIntent(Intent.ACTION_GET_CONTENT);
intent.setType
墨梅
·
2014-03-26 21:00
android调用手机铃声
RingtoneManager.TYPE_ALARM); 调用文件选择,选择铃声文件: Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType
大头K
·
2014-02-25 16:00
android
调用手机铃声
以前的一些笔记
分享功能Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("image/*"); intent.putExtra(Intent.EXTRA_SUBJECT
argonwu
·
2014-01-10 18:00
Android 图片的裁剪与相机调用
贴上部分代码: //调用图库 Intent intent = new Intent();
intent.setType
("image/*"); intent.putExtra("crop", "true
neubuffer
·
2013-11-23 14:00
分享到其他聊天工具
Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("image/jpg"); intent.putExtra(Intent.EXTRA_STREAM
chaloongjir
·
2013-11-15 17:00
Intent 调用事例
//联系人调用插入联系人界面(forapi4)intent.setAction(Intent.ACTION_INSERT);
intent.setType
("vnd.android.cursor.dir/
kevinx_xu
·
2013-11-02 13:00
打开android系统短信
Intentintent=newIntent(Intent.ACTION_MAIN);intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setType
duliqun
·
2013-10-16 09:48
android
系统短信
android 简单调用 系统分享
Intentintent=newIntent(Intent.ACTION_SEND);//启动分享发送的属性
intent.setType
("text/plain");//分享发送的数据类型Stringmsg
wulongtiantang
·
2013-09-29 21:00
android 分享功能
Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("image/png");//分享的数据类型 intent.putExtra(Intent.EXTRA_SUBJECT
neu_sunlei
·
2013-09-27 21:00
android
分享功能
如何读取系统联系人姓名和电话号码(1)
点击后进入系统联系人界面选择//跳转到联系人页面privatevoidcontactRead(){//Intentintent=newIntent(Intent.ACTION_GET_CONTENT);//
intent.setType
29boy
·
2013-09-15 15:24
Andoid学习笔记
android 分享文字到其他应用程序
shareText(Context context, String title, String text) { Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType
jianweicao
·
2013-08-22 11:00
android
Android 文件选择的实现代码
打开文件选择器复制代码代码如下:privatevoidshowFileChooser(){Intentintent=newIntent(Intent.ACTION_GET_CONTENT);
intent.setType
·
2013-08-19 15:48
Android 文件的选择
void showFileChooser() { Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType
·
2013-08-19 14:00
android
android中 MediaStore提取缩略图和原始图像
article/details/10005767提取图像的Thumbnail1)启动IntentIntentintent=newIntent(Intent.ACTION_GET_CONTENT,null);
intent.setType
奥特曼超人Dujinyang
·
2013-08-16 16:11
Bitmap
Android
android中
MediaStore提
MediaStore
缩略图和原始图像
Android
技术汇总
Android跳转系统联系人界面插入联系人 传真\地址\邮箱\职位\部门\邮编\照片
privatevoidtoExecuteSave(){Intentintent=newIntent(Intent.ACTION_INSERT);
intent.setType
("vnd.android.cursor.dir
cnzhuzi
·
2013-08-02 13:22
Android
Android 图片的裁剪与相机调用
: //调用图库 Intent intent = new Intent();
intent.setType
·
2013-08-01 23:00
android
选择发送文件 ACTION_SEND 直接跳转到WLAN直连发送(WifiDirect)
Intent intent = new Intent(); intent.setAction(Intent.ACTION_SEND);
intent.setType
("image/
闫老三
·
2013-08-01 14:00
action
分享
Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("text/plain"); intent.putExtra(Intent.EXTRA_SUBJECT
九洲北研
·
2013-07-25 13:00
小小的总结
Intent intent=new Intent(Intent.ACTION_GET_CONTENT); intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType
HDDevTeam
·
2013-06-07 20:20
android
图片
相册
Android中调用相册里面的图片并返回:
:Intentintent=newIntent(Intent.ACTION_GET_CONTENT); intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setType
mengdeqi
·
2013-05-16 16:20
调用
相册
[小代码]发送短信
100861"); Intentintent=newIntent(Intent.ACTION_VIEW,smsUri); intent.putExtra("sms_body","shenrenkui");
intent.setType
laihuan99
·
2013-05-13 11:00
uri
sms
短信
intent-filter something
1:Intentintent=new2:Intent();3:intent.setAction(Intent.ACTION_SEND);4:
intent.setType
("text/plain");5:
神剑戎
·
2013-04-24 10:00
调用自带手机分享,并发送图片
intent = new Intent(Intent.ACTION_SEND); // 启动分享发送的属性 //
intent.setType
("text/plain");
284772894
·
2013-03-28 11:00
并发
Android打开本地文件
Intentintent=newIntent();
intent.setType
("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult
jaycee110905
·
2013-03-20 13:00
android
文件
打开文件
联系人添加界面并添加相应数据
调用联系人添加界面privatevoidtoAddContact(){Intentintent=newIntent(Intent.ACTION_INSERT);
intent.setType
("vnd.android.cursor.dir
xue_wei_love
·
2013-03-13 23:00
Android自定义裁切输出位置`MediaStore.EXTRA_OUTPUT
01 //发送请求02 Intentintent=newIntent(Intent.ACTION_GET_CONTENT,null);03
intent.setType
("image/*")
CPPX的博客
·
2013-02-20 10:00
蓝牙发送文件
); Uriuri1=Uri.fromFile(file); Intentintent=newIntent(); intent.setAction(Intent.ACTION_SEND); //
intent.setType
zhaojianhua
·
2013-02-20 08:00
插入数据到联系人(编辑或新建)界面
界面intent=newIntent(Intent.ACTION_INSERT_OR_EDIT);intent.putExtra(Insert.EMAIL,mUrl);//插入到编辑联系人的email行
intent.setType
zhao7134
·
2012-12-20 18:00
intent
Contacts
Android中通过Intent 调用图片、视频、音频、录音、拍照
requestCode返回的标识Intentintent=newIntent(Intent.ACTION_GET_CONTENT);//"android.intent.action.GET_CONTENT"
intent.setType
zwq1457
·
2012-12-20 15:00
app推广必备功能:分享到,更多应用,创建快捷方式
publicstaticvoidshare(Contextcontext){//TODOAuto-generatedmethodstubIntentintent=newIntent(Intent.ACTION_SEND);//分享的数据类型
intent.setType
sunlips
·
2012-12-14 13:00
app推广必备功能:分享到,更多应用,创建快捷方式
TODO Auto-generated method stub Intent intent=new Intent(Intent.ACTION_SEND); // 分享的数据类型
intent.setType
sunlips
·
2012-12-14 13:00
APP
android 实现音频分享功能
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType
zengxx1989
·
2012-11-23 17:00
android
android分享图片到微博
="file:///"+imagePath;//imagePath:完整路径,要带文件扩展名 intent.putExtra(Intent.EXTRA_STREAM,Uri.parse(url));
intent.setType
bboyfeiyu
·
2012-11-18 11:00
Android 图像系列: 图片的裁剪与相机调用
贴上部分代码: //调用图库 Intentintent=newIntent();
intent.setType
("image/*"); intent.putExtra("crop","true");//
KnowHeart
·
2012-11-08 11:00
关于Intent
查看联系人的两种设置方式:Intent intent = new Intent(); intent.setAction(Intent.ACTION_GET_CONTENT); //用来列出列表中的所有人的电话号码
intent.setType
xc0415
·
2012-11-06 12:33
data
action
type
关于Intent
intent = new Intent(); intent.setAction(Intent.ACTION_GET_CONTENT); //用来列出列表中的所有人的电话号码
intent.setType
xc0415
·
2012-11-06 12:33
type
action
intent
Data
category
intent-filiter
Android实现分享到为微博、人人等的功能
2、点击分享按钮之后的效果效果图出来,接下来是代码的解析了,点击按钮时的相应代码Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("image
HeyNine
·
2012-10-28 15:00
android 分享到微博
/** * 分享到微博等 */ void share() { Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType
zheyiw
·
2012-10-10 13:00
android
android分享,如何移除掉信息这项
ntentintent=newIntent(Intent.ACTION_SEND);//将所有含有发送功能的APP做成一个列表以供选择
intent.setType
("text/plain");
lijun952048910
·
2012-10-10 12:00
android
在Activity之间传递数据
返回,以便在A中使用选择的通讯录数据,基本过程如下: Intentintent=newIntent(); /*开启Pictures画面Type设定为image*/
intent.setType
·
2012-09-25 03:00
数据
Activity
android gallery相关操作
1,android调用gallery获取图片 Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType
("
ericchan2012
·
2012-09-21 20:00
android
android分享功能的实现
Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("text/plain");intent.putExtra(Intent.EXTRA_SUBJECT
tianxiangshan
·
2012-09-11 19:00
android 调用分享
Intentintent=newIntent(Intent.ACTION_SEND);//启动分享发送到属性
intent.setType
("text/plain");//分享发送到数据类型 intent.putExtra
oldfeel
·
2012-08-14 15:00
android
分享
android编程之图片剪裁
Intentintent=newIntent("com.android.camera.action.CROP");
intent.setType
("image/*"); //设置数据,bitmap intent.putExtra
xyz_fly
·
2012-08-03 10:00
编程
android
File
产品
output
照片
调用系统短信页面
."); intent.putExtra("sms_body","短信内容");
intent.setType
("vnd.android-dir/mms-s
xue_wei_love
·
2012-07-30 13:00
sms
Android分享功能
Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("image/*"); intent.putExtra(Intent.EXTRA_SUBJECT
Android_Xiaoqi
·
2012-07-27 19:00
android
dialog
分享图片简单实现
Intentintent=newIntent(Intent.ACTION_SEND);
intent.setType
("image/*"); intent.putExtra(Intent.EXTRA_SUBJECT
dreamer0924
·
2012-07-19 08:00
android 分享功能
Intent intent=new Intent(Intent.ACTION_SEND);
intent.setType
("text/plain"
endual
·
2012-07-09 10:00
android
上一页
1
2
3
4
5
6
下一页
按字母分类:
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
其他