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
setDataAndType
Android 之安装APK
Intent intent = new Intent(Intent.ACTION_VIEW); intent.
setDataAndType
(Uri.fromFile(new File("
yingang_1982
·
2014-04-22 09:00
android
Android实现文件下载并自动安装apk包
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
tiandyoin
·
2014-04-11 09:00
下载更新之后,自动安装apk文件
用以下代码即可安装下载在本地的apk文件(apkFile)Intentintent=newIntent(); intent.setAction(Intent.ACTION_VIEW); intent.
setDataAndType
ord1nary
·
2014-04-04 11:29
更新
apk安装
安装更新
ActivityNotFoundException: No Activity found to handle Intent
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(android.content.Intent.ACTION_VIEW); intent.
setDataAndType
·
2014-03-20 17:00
exception
android安装apk程序
publicvoidinstallAPK() { Intenti=newIntent(Intent.ACTION_VIEW); Stringpath="/sdcard/xxx.apk"; i.
setDataAndType
768797821
·
2014-03-14 10:54
android安装apk程序
安装.apk文件
publicvoidinstall(Contextcontext) { Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
dongge825
·
2014-03-11 16:00
android 打开PDF
Uripath=Uri.fromFile(file); Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
(path,"application
zzf112
·
2014-02-19 09:00
Android中代码运行指定Apk的简单方法
可以通过以下方法实现:复制代码代码如下:privatevoidinstallAPK(StringapkUrl){Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
·
2014-01-24 16:47
android自带的功能
Intent("com.android.camera.action.CROP"); intent.
setDataAndType
gdfdfg
·
2014-01-24 11:00
android
Android中代码运行指定的Apk
可以通过以下方法实现: privatevoidinstallAPK(StringapkUrl){ Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
song19891121
·
2014-01-23 10:00
java
android
android应用
浏览某一张图片
Intentintent=newIntent(Intent.ACTION_VIEW);Uriuri=Uri.fromFile(file);intent.
setDataAndType
(uri,"image
吴细福
·
2013-12-30 11:12
浏览某一张图片
android应用程序安装后自动打开
getApplicationContext());//注册广播,用于监听应用是否安装完成//安装apkIntentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
sdvch
·
2013-12-03 23:00
apk下载 安装 卸载 打开
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
luohai859
·
2013-11-21 22:00
关于系统图片剪切工具的大图剪切方案
publicvoidstartPhotoZoom(Uriuri){ Intentintent=newIntent("com.android.camera.action.CROP"); intent.
setDataAndType
msn465780
·
2013-10-18 14:00
bitmap
uri
android 调用系统图库查看指定路径的图片
Intent.ACTION_VIEW);//UrimUri=Uri.parse("file://"+picFile.getPath());Android3.0以后最好不要通过该方法,存在一些小Bugintent.
setDataAndType
lyl278401555
·
2013-10-17 18:00
Android程序使用代码的安装和卸载!!!
Environment.getExternalStorageDirectory() + str; Intent intent = new Intent(Intent.ACTION_VIEW); i ntent.
setDataAndType
Assistne
·
2013-10-09 14:00
android
android通过代码的形式来实现应用程序的方法
注意:intent.
setDataAndType
(Uri.fromFile(file),"application/vnd.android.package-archive");这一句话中,第一个参数是要安装的
·
2013-10-04 16:33
拍照,相册获取图片,系统裁剪图片
获取相册图片的一种写法: Intent intent = new Intent(Intent.ACTION_PICK); intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
wangleyiang
·
2013-09-30 12:00
拍照
裁剪
相册
拍照,相册获取图片,系统裁剪图片
阅读更多获取相册图片的一种写法:Intentintent=newIntent(Intent.ACTION_PICK);intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
wangleyiang
·
2013-09-30 12:00
相册
拍照
裁剪
拍照,相册获取图片,系统裁剪图片
阅读更多获取相册图片的一种写法:Intentintent=newIntent(Intent.ACTION_PICK);intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
wangleyiang
·
2013-09-30 12:00
相册
拍照
裁剪
intent.
setDataAndType
1.Intentopenapicturefilepublic:Java代码Intentintent=newIntent("android.intent.action.VIEW");intent.addCategory("android.intent.category.DEFAULT");intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);Uriuri=Ur
5爱吃西红柿
·
2013-09-25 09:04
android应用开发
intent.
setDataAndType
1.Intentopenapicturefilepublic: Java代码 Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_
dengzhangtao
·
2013-09-25 09:00
intent
如何让发出去的intent在没有匹配的情况下不出现FC
newIntent();intent.setAction("org.lang.intent");Uridata=Uri.parse("http://www.baidu.com:8080/2302");intent.
setDataAndType
genlan
·
2013-09-21 15:38
Activity
如何不出现FC
通过代码的形式来实现应用程序的安装与卸载
因为应用程序的安装与卸载模块在android系统中已经写好了,所以我们只需要激活就行了注意:intent.
setDataAndType
(Uri.fromFile(file),"application/vnd.android.package-archive
caihongshijie6
·
2013-09-20 21:00
Android调用系统功能、apk安装卸载
";//文件需有可读权限 Intentintent=newIntent(); intent.setAction(android.content.Intent.ACTION_VIEW); intent.
setDataAndType
lylzwsy
·
2013-09-09 12:00
android
apk
系统
intent
手机安全卫士开发系列(7)——知识点整理(2)
privatevoidinstall(Filefile){ Intentintent=newIntent(); intent.setAction(Intent.ACTION_VIEW); intent.
setDataAndType
lxq_xsyu
·
2013-09-06 22:00
android
总结
开发
安全卫士
Android 本地文件 调用系统 设置壁纸
File file = new File(tempImgSavePath); Intent intent = new Intent(Intent.ACTION_ATTACH_DATA); intent.
setDataAndType
siqingenergy
·
2013-08-30 16:00
android 壁纸
安装,卸载,打开APK
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
青莲居士
·
2013-08-20 16:00
Android 调用系统播放器
StringaudioPath){ Intentintent=newIntent(); intent.setAction(android.content.Intent.ACTION_VIEW); intent.
setDataAndType
lzt1226
·
2013-08-15 08:43
android
视频播放器
音乐播放器
Android 调用系统播放器
StringaudioPath){Intentintent=newIntent();intent.setAction(android.content.Intent.ACTION_VIEW);intent.
setDataAndType
lzt1226
·
2013-08-15 08:43
Android
音乐播放器
视频播放器
android技术
Android代码实现APK文件的安装与卸载
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
fengye810130
·
2013-07-30 18:00
android
安装
卸载
Android代码实现APK文件的安装与卸载
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
findsafety
·
2013-07-24 09:00
android 打开各种文件(
setDataAndType
)
android打开各种文件(
setDataAndType
)android打开各种文件setDataAndTypeaction动作 转自:http://luhuajcdd.iteye.com/blog/
yunlong782
·
2013-06-13 15:00
方法
android打开各种文件
Android apk下载 安装 卸载 打开
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
ab6326795
·
2013-06-09 21:00
Android代码实现APK文件的安装与卸载
StringfileName=Environment.getExternalStorageDirectory()+str; Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
heng615975867
·
2013-06-08 13:00
android安装app
Intentintent=newIntent(Intent.ACTION_VIEW); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); /* *intent.
setDataAndType
崔晓华
·
2013-05-28 17:00
android
更新app
Android:通过意图启动其他程序、Uri、setAction、setData、
setDataAndType
Uri、setAction、setData通过按钮启动其他程序://通过隐式意图启动其他程序 private void btn2Click()//浏览某个网页 { Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); Uri data = Uri.par
glblong
·
2013-05-27 20:53
setData
拨号
setDataAndType
分机号
setAction
Android:通过意图启动其他程序、Uri、setAction、setData、
setDataAndType
Uri、setAction、setData通过按钮启动其他程序://通过隐式意图启动其他程序 private void btn2Click()//浏览某个网页 { Intent intent = new Intent(); intent.setAction(Intent.ACTION_VIEW); Uri data = Uri.parse("h
glblong
·
2013-05-27 20:53
拨号
setAction
setData
Android学习
请写出安装apk的程序代码
Intenti=newIntent(Intent.ACTION_VIEW); //apk Stringstr="/sdcard/FileTest.apk"; i.
setDataAndType
(Uri.parse
qq634416025
·
2013-05-14 16:00
apk
android
[小代码]使用intent用默认的程序打开文件
intent.setAction(android.content.Intent.ACTION_VIEW); Filefile=newFile("/sdcard/test.mp4"); intent.
setDataAndType
laihuan99
·
2013-05-13 11:00
intent
打开文件
Android多媒体学习四:调用Android自带的播放器播放Audio
Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri,MimeType);start
swdrt
·
2013-05-07 21:00
android
audio
Albums
Medias
Android下载完文件打开
Intent(); intent.setAction(android.content.Intent.ACTION_VIEW); File file = new File(path); intent.
setDataAndType
CshBBrain
·
2013-05-06 11:00
android
android 打开PDF
Uripath=Uri.fromFile(file); Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
(path,"application
xiaojunhu
·
2013-04-17 16:00
Android开发之Intent跳转到系统应用中的拨号界面、联系人界面、短信界面 .相机.录影机....
/安装已经存在的apk StringfilePath="mnt/sdcard/abc.apk"; Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
shadou0109
·
2013-04-13 20:00
android 安装app私有存储目录下的apk
阅读更多一般安装app就是Intenti=newIntent(Intent.ACTION_VIEW);//i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);i.
setDataAndType
jacky-zhang
·
2013-04-08 18:00
android 安装app私有存储目录下的apk
Intent i = new Intent(Intent.ACTION_VIEW); // i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); i.
setDataAndType
jacky-zhang
·
2013-04-08 18:00
android
Android程序使用代码的安装和卸载
StringfileName=Environment.getExternalStorageDirectory()+str; Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
twlkyao
·
2013-03-16 20:00
android
系统应用
应用管理
Android中安装,启动和卸载应用
newIntent(Intent.ACTION_VIEW); installIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); installIntent.
setDataAndType
twlkyao
·
2013-03-14 16:00
android
应用管理
系统应用
Android常用到得方法积累
Intent.ACTION_VIEW); Uridata=Uri.fromFile(file); Stringtype="application/vnd.android.package-archive"; intent.
setDataAndType
xiahao86
·
2013-01-14 09:00
Android多媒体学习:调用android自带的播放器播放Audio
Intent intent = new Intent(Intent.ACTION_VIEW); intent.
setDataAndType
(Uri, Mi
xuqingchen9988
·
2012-12-10 11:00
java
android
上一页
1
2
3
4
5
6
7
下一页
按字母分类:
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
其他