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跳转应用安装页面
一.低版本跳转方式Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(uri,"application/vnd.android.package-archive
键盘上的麒麟臂
·
2023-12-22 06:05
相册选择以后根据uri获取图片路径
Intentintent=newIntent(Intent.ACTION_PICK,null);intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
西决_7e15
·
2023-10-21 08:14
APK安装过程解析
installintent.setAction(Intent.ACTION_VIEW);installintent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);installintent.
setDataAndType
jxq1994
·
2023-10-08 16:12
Android
Framework
android
FrameWork
Android 10.0获取本地视频及其预览图
privatevoidopenLocalVideo(){Intentintent=newIntent();intent.setAction(Intent.ACTION_GET_CONTENT);intent.
setDataAndType
Mr_Tony
·
2023-07-25 18:28
Android
日常bug
关于APP内部进行升级下载好apk后无法正确地跳转到安装界面,抛出FileUriExposedException异常的处理
finalFilefile=newFile(filePath);Intentintent=newIntent(Intent.ACTION_VIEW);Uridata=Uri.fromFile(file);intent.
setDataAndType
濺m
·
2023-04-15 02:12
使用安卓自带裁剪功能
newIntent("com.android.camera.action.CROP");intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);intent.
setDataAndType
难得糊涂与君勉
·
2023-03-23 13:23
Android 7.0以上 APP软件自动更新 解析软件包时出现错误
发现安装包成功下载到本地了,但是在安装时,却报了“解析软件包时出现错误”,如下:参考众多博客后,找到了答案原代码:Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
immortal_luo
·
2023-03-15 10:28
Android
android
android
studio
安卓系统应用编程计算机代码,android通过代码的形式来实现应用程序的方法
注意:intent.
setDataAndType
(Uri.fromFile(file),"application/vnd.android.package-archive");这一句话中,第一个参数是要安装的
吴升知
·
2023-03-14 07:24
安卓系统应用编程计算机代码
图片裁剪相关
publicvoidstartPhotoZoom(Uriuri){Intentintent=newIntent("com.android.camera.action.CROP");intent.
setDataAndType
喵叮当
·
2023-02-07 10:49
2019-08-14
privatevoidplay(){Intentintent=newIntent(Intent.ACTION_VIEW);Uriparse=Uri.parse(viedo);//视屏路径intent.
setDataAndType
车蛋
·
2023-01-31 10:51
Android中的图片裁剪(一)之系统裁剪工具
中裁剪的图片最简单的方法就是调用系统中的裁剪图片应用Intentintent=newIntent();intent.setAction("com.android.camera.action.CROP");intent.
setDataAndType
我是午饭
·
2022-02-16 21:55
安装本地apk
return;Intentintent=newIntent(Intent.ACTION_VIEW);Uriuri=Uri.parse("file://"+file.toString());intent.
setDataAndType
广陵墨玉刀
·
2021-06-24 18:00
Android遇到的问题
(Intent.CATEGORY_DEFAULT);intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//第一个参数安装包路径,第二个参数固定intent.
setDataAndType
V1tas
·
2021-06-12 03:23
普通或者静默_安装或卸载_APK
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
sun_wenming
·
2021-04-20 14:14
Android APP自动更新时,跳转到安装界面时出现解析失败
跳转到安装界面时出现解析失败,解决办法:原因是下载文件的权限不正确因为安装时会跳转到其他应用,其他应用没有改文件的读写权限Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
云雾雨烟
·
2020-09-15 18:55
实用技巧
apk升级
可以直接调用系统的升级程序:Uriuri=Uri.fromFile(newFile(fileName,apkname));Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
索然索藉
·
2020-09-13 20:31
工作笔记-安卓
apk
文档
android
Android小米5安装包解析失败问题
startActivity是添加Intent.FLAG_GRANT_READ_URI_PERMISSIONIntentinstallAPK=newIntent(Intent.ACTION_VIEW);installAPK.
setDataAndType
烟雨-随风
·
2020-09-13 09:11
Android
安装包解析失败
Android
android 裁剪图片完 程序会崩溃问题
不然配置不高的手机就会出现这种问题Intentintent=newIntent(“com.android.camera.action.CROP”);//调用Android系统自带的一个图片剪裁页面,intent.
setDataAndType
wenyuan94
·
2020-09-12 10:45
android
图片裁剪关于return-data
startPhotoZoom1111111111111111111111");Intentintent=newIntent("com.android.camera.action.CROP");intent.
setDataAndType
llaughing
·
2020-09-12 09:17
android
Android做检测版本更新安装完以后就什么都没有了,没有出现安装成功的界面
安装程序的代码如下:Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri.parse("file://xxxx.apk
JackRo7
·
2020-09-12 09:10
Android
安卓app版本更新安装失败
希望和我情况相同的可以,可以借鉴一下我的,我遇到的也是问题中的一种,在版本更新中,发现版本不同需要下载,成功下载后安装说是解析包错误,我的原因是下载最新的apk安装包,和安装的路径不同,所以出现类似错误intent.
setDataAndType
dongfyzs
·
2020-08-26 23:51
android安卓升级版本安装后自动打开弹出完成和打开新版应用界面
newIntent();intent.setAction(Intent.ACTION_VIEW);intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.
setDataAndType
weixin_34273479
·
2020-08-25 08:17
android端升级下载后如何自动安装并且有提示安装完成或打开,然后点击打开
intent.setAction("android.intent.action.VIEW");intent.addCategory("android.intent.category.DEFAULT");intent.
setDataAndType
阿福-jacob
·
2020-08-25 07:39
解决Android端升级安装后自动打开的问题
1.下载完成后,调用Intent调用安装Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri.fromFile(newFile
Micky米
·
2020-08-25 06:27
java
视频播放器
--系统自带的播放器Uriparse=Uri.parse(data);//显示数据给用户Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
ItemWang
·
2020-08-23 07:12
Android 安装apk包方法/监听升级
http://blog.csdn.net/heikefangxian23/article/details/38582261通过指定intent.
setDataAndType
(uri,"application
普通的程序员
·
2020-08-22 18:16
图片处理
Intentintent=newIntent(Intent.ACTION_PICK,null);intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
海在路上
·
2020-08-21 23:03
android软件版本升级时,安装新版本后,没有出现安装成功界面或直接回到桌面
newIntent(Intent.ACTION_VIEW);intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);//android4.0以后需要添加这行代码intent.
setDataAndType
续写经典
·
2020-08-20 22:44
android
【解决】APK下载到Cache目录安装失败的问题
Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri.fromFile(f
oleryu
·
2020-08-20 19:21
Android
开发
Android打开相机和相册的方法--很受用
1,打开相册的方法Intentintent=newIntent(Intent.ACTION_PICK);intent.
setDataAndType
(MediaStore.Images.Media.INTERNAL_CONTENT_URI
曾自强
·
2020-08-20 13:39
Android
Android Fragment页打开相册
1按钮点击响应里添加IntentalbumIntent=newIntent(Intent.ACTION_PICK,null);albumIntent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
.class
·
2020-08-20 11:56
android
解决android有些机型截图返回 resultCode = 0的问题
修改:intent.
setDataAndType
(imageUri,“image/*”);//imageUri图片的原路径intent.putExtra(“output”,saveUri);//saveUri
宅菜鸟
·
2020-08-20 11:54
android
安卓上传本地图片闪退
1.1开启选择本地图片Intentintent=newIntent(Intent.ACTION_PICK,null);intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT
vonchenchen1
·
2020-08-20 10:04
Android
Android 打开相册,选择一张图片并返回
选择一张图片并返回一打开相册privatestaticfinalintALBUM_OK=0;IntentalbumIntent=newIntent(Intent.ACTION_PICK,null);albumIntent.
setDataAndType
weixin_30293135
·
2020-08-20 08:47
android之换头像及遇到的一些坑
三、源码解析1、调用你系统相册//打开相册Intentintent1=newIntent(Intent.ACTION_PICK,null);intent1.
setDataAndType
(Media
时间胶嚢
·
2020-08-20 08:22
Android
Android做检测版本更新安装完以后直接退出,没有出现安装成功的界面
安装程序的代码如下:Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri.parse("file://xxxx.apk
JackRo
·
2020-08-20 01:51
Android代码实现APK文件的安装与卸载
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
haishizi1
·
2020-08-18 20:59
android综合
android studio使用系统自带的剪切工具,出现“无法加载此图片”的问题--------已解决
newIntent("com.android.camera.action.CROP");Log.i(TAG,"startImageCrop:"+"执行到压缩图片了"+"uriis"+uri);intent.
setDataAndType
H-Android
·
2020-08-17 06:23
android
studio
Android问题记录
安卓笔记 7.0后的 图片裁剪和拾取和相机拾取图片和裁剪 适配
//打开相册privatevoidopenAlbum(){IntentselectIntent=newIntent(Intent.ACTION_PICK,null);selectIntent.
setDataAndType
丿裸奔的蜗牛
·
2020-08-17 06:44
application/vnd.android.package-archive到底是什么
voidupdate(){Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri.fromFile(newFile(Environment.getExternalStorageDirectory
大三狗
·
2020-08-15 12:17
android
apk
安卓
Android:Java代码实现APP普通安装卸载和静默安装卸载
普通安装核心代码:Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
(Uri.f
沐恩_
·
2020-08-14 04:58
Android
解决MIUI调用系统裁剪照片报错
privatevoidstartPhotoZoom(Uriuri,intsize){Intentintent=newIntent("com.android.camera.action.CROP");intent.
setDataAndType
蒙眼的藏羚羊
·
2020-08-13 18:47
Android
Android调用本地相册选择图片并剪切后展示和缓存
(){gallery();});privatevoidgallery(){//选择本地图片Intentintent=newIntent(Intent.ACTION_PICK,null);intent.
setDataAndType
SaluteWarmTinct
·
2020-08-10 01:27
Android
解决android4.4以上手机调用系统相册路径返回错误的问题
=newIntent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);intent.
setDataAndType
-往事随风
·
2020-08-09 22:03
Android下载完成更新后,没有打开安装成功界面,出现闪退问题
最开始以为是android7.0权限问题,后来发现在6.0手机上也是会出现这种问题的这是修改之前的代码:Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
四级五次郎
·
2020-08-07 18:15
Android
android实现调用系统音乐播放器
/**调用的是系统的音乐播放器*/Intentintent_music=newIntent(Intent.ACTION_PICK);intent_music.
setDataAndType
(Uri.EMPTY
summernnsz
·
2020-08-04 12:17
Android
基础
Android
Android调用系统相册和相机选择图片显示在界面
Android调用系统相册(未进行权限判断)Intentintent=newIntent(Intent.ACTION_PICK);intent.
setDataAndType
(MediaStore.Images.Media.EXTERNAL_CONTENT_URI
vincecarterhu
·
2020-08-04 03:51
零散记录
Android PKMS深入分析安装应用
viewplaincopyUriuri=Uri.fromFile(newFile(filename));Intentinent=newIntent(Intent.ACTION_VIEW);intent.
SetDataAndType
_dowork
·
2020-08-03 20:20
Android
基础业务分析
Android 常用系统功能(打开相册,打开系统设置等等)
IntentpickIntent=newIntent(Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI);pickIntent.
setDataAndType
TGWhuli
·
2020-08-03 14:38
Android
Android代码实现APK文件的安装与卸载
StringfileName=Environment.getExternalStorageDirectory()+str;Intentintent=newIntent(Intent.ACTION_VIEW);intent.
setDataAndType
叶飘飘
·
2020-08-02 23:49
ANDROID
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
其他