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无需root实现apk的静默安装
似乎很难实现静默安装,因为Android并不提供显示的Intent调用,一般是通过以下方式安装apk:Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
初页
·
2016-01-22 09:47
Android 小米安装apk遇到的问题
:Intentintent=newIntent(Intent.ACTION_VIEW); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.
setDataAndType
IT_Phoenix
·
2016-01-19 15:00
PackageManagerService(Android5.1)深入分析(四)安装应用
可以启动应用的安装过程,如下所示:Uriuri=Uri.fromFile(newFile(filename)); Intentinent=newIntent(Intent.ACTION_VIEW); intent.
SetDataAndType
kc58236582
·
2016-01-15 09:00
Android编程之软件的安装和卸载方法
Environment.getExternalStorageDirectory()+"/myApp.apk";Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
wiseideal
·
2015-12-03 16:21
9.1.2 使用意图播放
为了通过创建意图来触发内置媒体播放器应用程序的播放活动,可以使用Intent.ACTION_VIEW常量构造一个活动,并通过
setDataAndType
方法传入文件的
·
2015-11-13 13:55
使用
Android 代码安装APK文件
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(android.content.Intent.ACTION_VIEW); intent.
setDataAndType
·
2015-11-13 06:18
android
Android调用系统 Set As Intent
Intent.ACTION_ATTACH_DATA); intent.addCategory(Intent.CATEGORY_DEFAULT); intent.
setDataAndType
·
2015-11-13 06:59
android
android 调用本地音乐播放器
Intent intent_music = new Intent(Intent.ACTION_PICK); intent_music.
setDataAndType
(Uri.EMPTY,"
·
2015-11-12 23:25
android
调用android系统本地的播放器播放本地视频或者网络视频
Intentit=newIntent(Intent.ACTION_VIEW); Uriuri=Uri.parse(videoFilePath); it.
setDataAndType
cao185493676
·
2015-11-04 11:00
Android 使用系统的Activity播放音频文件 intent
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction(Intent.ACTION_VIEW); intent.
setDataAndType
·
2015-10-30 13:41
Activity
欢迎使用CSDN-markdown编辑器
Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
(Uri.fromFile(newFile(mUrl)), "application
hp_click
·
2015-10-26 16:00
apk安装
android 开发 实现自动安装
场景:实现自动安装apk程序 注意:不能使用 intent.
setDataAndType
(Uri.parse(apkPath), "application/vnd.android.package-archive
·
2015-10-23 08:43
Android 开发
Android 用Intent调用系统中经常被用到的组件
调用系统音乐播放器 1 Intent internt = new Intent(Intent.ACTION_VIEW); 2 internt.
setDataAndType
(Uri.parse(item.url
·
2015-10-21 11:54
android
Android通过
setDataAndType
(uri, "type")打开文件
我们可以通过intent的
setDataAndType
方法实现,这里列举出更多的打开方式:我的具体代码实现片段是:Intentintent=newIntent(Intent.ACTION_VIEW);
luzhenyuxfcy
·
2015-09-15 14:00
android打开文件
Android安装apk文件,不弹出安装完成的界面
Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
(Uri.fromFile(newFile(fileUrl)), "application
mzz5240
·
2015-08-19 10:00
解决Android端升级安装后自动打开的问题
1.下载完成后,调用Intent调用安装Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
(Uri.fromFile(newFile
JJMM2009
·
2015-07-28 20:00
安卓上传本地图片闪退
1.1开启选择本地图片Intentintent=newIntent(Intent.ACTION_PICK,null); intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT
lidec
·
2015-07-01 10:00
安卓
闪退-图片
Android实现应用下载并自动安装apk包
StringfileName=Environment.getExternalStorageDirectory()+str; Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
SuShine
·
2015-06-24 13:00
android
String
File
url
delete
byte
Android实现应用下载并自动安装apk包
StringfileName=Environment.getExternalStorageDirectory()+str; Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
SuShine
·
2015-06-24 13:00
android
String
File
url
delete
byte
笔记112--Android打开各种文件(
setDataAndType
)
转自:http://zengyan2012.iteye.com/blog/1646492基础类/** *打开文件 *@paramfile */ privatevoidopenFile(Filefile){ Intentintent=newIntent(); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); //设置intent的Action属性 in
caohuicong
·
2015-06-05 16:00
Android 自动更新APP时确定安装后没有显示安装完成页面
自动更新APP代码时,开始用的是以下代码Intent intent = new Intent(Intent.ACTION_VIEW); intent.
setDataAndType
xurong
·
2015-05-22 12:00
Android常用代码之普通及系统权限静默安装APK
install(Context context, String filePath) { Intent intent = new Intent(Intent.ACTION_VIEW); intent.
setDataAndType
bogongjie
·
2015-05-05 15:00
android
Android安装或者卸载应用APK
publicstaticvoidinstallApkByPath(Contextcontext,Stringpath){ Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
yanzhenjie1003
·
2015-04-07 09:00
安装
卸载
Android安装
Android卸载
android软件版本升级时,安装新版本后,没有出现安装成功界面或直接回到桌面
newIntent(Intent.ACTION_VIEW); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//android4.0以后需要添加这行代码 intent.
setDataAndType
a125138
·
2015-03-31 09:00
android
软件
android调用系统播放器
调用系统播放器方式1Intentit=newIntent(Intent.ACTION_VIEW); Uriuri=Uri.parse("file:///sdcard/video.mp4"); it.
setDataAndType
happycodinggirl
·
2015-03-25 12:00
android 打开各种文件(
setDataAndType
)
Java代码/**卸载:UripackageURI=Uri.parse("package:com.demo.CanavaCancel");IntentuninstallIntent=newIntent(Intent.ACTION_DELETE,packageURI);startActivity(uninstallIntent);Environment拥有一些可以获取环境变量的方法package:c
lanximu
·
2015-01-20 00:00
Android
解决android 更新之后 没有选择启动或完成按钮
Intent.ACTION_VIEW); //添加则有重新启动和完成按钮如果没有安装完成后直接返回桌面intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.
setDataAndType
dakun012
·
2015-01-19 11:00
android下载安装APK
代码安装apkIntenti=newIntent(Intent.ACTION_VIEW); StringfilePath="/sdcard/XXX.apk"; i.
setDataAndType
(Uri.parse
fyfcauc
·
2015-01-13 11:00
android
欺骗你的小眼睛——Android 静默安装
; FileapkFile=newFile(Environment.getExternalStorageDirectory().getAbsolutePath()+"/1.apk"); intent.
setDataAndType
u011282069
·
2015-01-02 11:00
Android常用的代码片段
String filePath = "/sdcard/"+fileName; Intent intent = new Intent(Intent.ACTION_VIEW); intent.
setDataAndType
Spoon2014
·
2014-12-25 15:00
Android 用Intent调用系统中经常被用到的组件
调用系统音乐播放器1 Intent internt = new Intent(Intent.ACTION_VIEW);2 internt.
setDataAndType
(Uri.parse(item.url
技术人
·
2014-12-22 14:26
android
video
程序
视频播放器
音乐播放器
Android 用Intent调用系统中经常被用到的组件
调用系统音乐播放器1 Intent internt = new Intent(Intent.ACTION_VIEW);2 internt.
setDataAndType
(Uri.parse(item.url
技术人
·
2014-12-22 14:26
android
video
程序
视频播放器
音乐播放器
史上最强Android 开启照相或者是从本地相册选中一张图片以后先裁剪在保存并显示的讲解附源码i
和一个显示图片的控件(ImageView)这里就不给出这部分的代码了1.是打开系统的相册IntentalbumIntent=newIntent(Intent.ACTION_PICK,null);albumIntent.
setDataAndType
IT_Transformers
·
2014-12-21 15:02
android
史上最强Android 开启照相或者是从本地相册选中一张图片以后先裁剪在保存并显示的讲解附源码i
(ImageView)这里就不给出这部分的代码了1.是打开系统的相册IntentalbumIntent=newIntent(Intent.ACTION_PICK,null); albumIntent.
setDataAndType
IT_Transformers
·
2014-12-21 15:00
android
android 调用系统的图片选择
Intent openAlbumIntent = new Intent(Intent.ACTION_PICK); // openAlbumIntent.
setDataAndType
iaiai
·
2014-11-08 12:00
android
android 调用手机已安装的音乐播放器 的列表播放音乐
intent.setAction(android.content.Intent.ACTION_VIEW);FilenewFile=newFile(path);Uriuri=Uri.fromFile(newFile);intent.
setDataAndType
javalive09
·
2014-10-14 17:57
android
C
Android下intent的setdata、settype和
setdataandtype
函数
http://blog.csdn.net/huangyic1986/article/details/6127284
chuiyuan
·
2014-10-12 23:00
android实现视频播放的几种方式
实现视频播放主要有以下三种方式,可以根据不同需求来使用不同的方式:1、调用手机自带播放器,这是最简单的一种方法,几行代码搞定:Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
annieliu502
·
2014-10-09 15:17
Android
android调用系统播放器
调用系统播放器方式1Intentit=newIntent(Intent.ACTION_VIEW); Uriuri=Uri.parse("file:///sdcard/video.mp4"); it.
setDataAndType
u010095768
·
2014-09-18 19:00
Android多媒体学习五:调用Android自带的播放器播放Audio
Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri,MimeType);start
luohai859
·
2014-09-18 16:00
ANDROID代码实现APK文件的安装与卸载
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW); intent.
setDataAndType
伽罗kapple
·
2014-08-25 11:00
android应用程序安装后自动打开
getApplicationContext());//注册广播,用于监听应用是否安装完成//安装apkIntentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
伽罗kapple
·
2014-08-24 17:00
apk安装法之三--"application/vnd.android.package-archive"是什么?
在第二篇中讲明了调用Intenti=newIntent(Intent.ACTION_VIEW);i.
setDataAndType
(Uri.parse("file://"+apkfile.toString
工程师123123123
·
2014-08-15 11:59
android
apk安装法之二----一段Android实现应用下载并自动安装apk包的代码
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
工程师123123123
·
2014-08-15 10:58
android
Android调用系统安装
先下载APK文件,下载完成后直接调用Intenti=newIntent(Intent.ACTION_VIEW); i.
setDataAndType
(Uri.parse("file://"+apkfile.toString
lastTNT
·
2014-08-04 17:00
Android 学习笔记--android——Activity跳转条件不匹配出现FC,规避
;intent.setAction("www.baidu.com.cn");Uridata=Uri.parse("http://www.baidu.com:8080/android");intent.
setDataAndType
Samuel_humg
·
2014-06-05 20:48
activity条件跳转不匹配
学习笔记
调用图片剪辑程序
publicstaticIntentcreateCropImageIntent(UriphotoUri){ Intentintent=newIntent("com.android.camera.action.CROP"); intent.
setDataAndType
a1031359915
·
2014-05-27 10:00
Android:Intent(二):Intent的Data属性和Type属性解析
的值会相互覆盖,即如果先设置Data的值,后设置Type的值,Data的值 会被Type的值覆盖,反过来也是这样,想既有Data的值也有Type的值,那么就要调用Intent 的
setDataAndType
AndroidCcx
·
2014-05-13 11:00
Android播放视频三种方式
中放入一个视频文件1.调用系统自带的播放器Intentintent=newIntent(Intent.ACTION_VIEW); Uriuri=Uri.parse("/sdcard/a.mp4"); intent.
setDataAndType
shepherd1st
·
2014-04-27 17:00
Android实现应用下载并自动安装apk包
2StringfileName=Environment.getExternalStorageDirectory()+str;3Intentintent=newIntent(Intent.ACTION_VIEW);4intent.
setDataAndType
fang0407011
·
2014-04-25 14:21
android
package
上一页
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
其他