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
上传 App Store 问题整理
UnexpectedCFBundleExecutableKey.Thebundleat'Payload/.app/xxx.bundle'doesnotcontainabundleexecutable.Ifthisbundle
intent
ionallydoesnotcontainanexecutable
墨隐于非
·
2023-07-18 07:39
Activity中Bundle传递数据
发送端:
Intent
intent
=new
Intent
(MainActivity.this,FirstActivity.class);Bundledata=newBundle();data.putString
cf8833
·
2023-07-18 03:33
【IDEA2023】解决IDEA中快捷键Alt+Enter不能引入局部变量
1、打开设置File➡️Settings➡️Editor➡️
Intent
ions搜索refactorings,将Introducelocalvariable这个选项勾选上将Introducelocalvariable
Bankcary
·
2023-07-18 02:23
intellij-idea
java
ide
Android唤起应用商店并跳转到应用详情页
首先上代码,从最简单的开始,直接打开当前手机的应用商店并跳转到我们应用的详情页:funstartMarket(){val
intent
=
Intent
(
Intent
.ACTION_VIEW)
intent
.data
_惊蛰
·
2023-07-18 02:31
Android----桌面软件开发(25号)
AndroidManifest设置获取启动项//获取启动图标集合val
intent
=
Intent
(
Intent
.ACTION_MAIN,null)
intent
.addCategory(
Intent
.CATEGORY_LAUNCHER
pgydbh
·
2023-07-18 02:17
《第一行代码 第二版》Android studio java开发学习笔记+源码
3.1Project模式的项目结构3.2app目录下的结构3.3res目录下的结构4.一些error解决方法二、探究Activity1.活动的基本用法1.1创建活动1.2Toast1.3Menu1.4销毁一个活动2.
Intent
-avocado-
·
2023-07-17 22:58
android
java
android
studio
Android 原生分享 指定 短信分享图文
privatevoidshareToSms(){
Intent
intent
=new
Intent
(
Intent
.ACTION_SEND);
intent
.setType("image/*");
intent
.putExtra
常朋_android
·
2023-07-17 20:43
Android 基础
:和let字符串内嵌表达式(字符串拼接)函数的参数默认值创建和加载布局在Activity中使用Toast在Activity中使用Menu销毁一个Activity
Intent
的使
快乐的小学渣~
·
2023-07-17 20:10
Android Service防杀
在onStartCommand方法,返回START_STICKY1、START_STICKY在运行onStartCommand后service进程被kill后,那将保留在开始状态,但是不保留那些传入的
intent
JFang
·
2023-07-17 16:46
android调用系统文件选择文件
android调用系统文件选择文件在app中用户选择u盘或者设备中的某个文件,在成功中获取该文件的路径1.打开系统文件夹binding.test.setOnClickListener{//调用系统文件夹val
intent
猿小帅01
·
2023-07-17 15:13
android
《Android编程权威指南》之使用布局与部件创建用户界面
好啦,本章将会优化Criminal
Intent
项目的布局,并将学习一个新的很好用的工具,叫ConstraintLayout。加油!
夜远曦白
·
2023-07-17 10:57
记一次写
Intent
的扩展
前言写项目的时候经常会写到跳转Activiey,写到跳转Activit就一定会写到putExtra,就像下面那样
intent
.putExtra("a",item.a)
intent
.putExtra("b
叫我旺仔
·
2023-07-17 06:54
Android 7.0适配 APK文件下载及安装问题(利用FileProvider解决)
如果你使用
Intent
携带这样的URI去打开外部App(比如:打开系统相机拍照),那么会抛出FileUriExposedException异常。
程序员王一
·
2023-07-17 05:44
进程管理工具htop、vmstat详解
1、htop:interactiveprocessviewer/交互式进程查看器htop[-dChustv]options:-d--delay=DELAY,Delaybetweenupdates,
intent
hsofseconds
sunnowyli
·
2023-07-17 01:17
unity android 打包报错 Targeting S+ (version 31 and above)...
完整报错应该类似下面这样:TargetingS+(version31andabove)requiresthatanexplicitvalueforandroid:exportedbedefinedwhen
intent
filtersarepresent
rrtt_2323
·
2023-07-16 22:18
Android
Unity
Targeting
S+
version
31
above
exported
android
12
打包
Android之
Intent
意图介绍一个意图(
Intent
)对象包含了目标组件、动作、数据、类别、附加数据、标志六个部分。目标组件目标组件可以帮助应用发送显式意图调用请求。
云雷屯176
·
2023-07-16 22:10
android
Android音视频开发基础(七):视频采集-系统API基础
本文是Android音视频任务列表的其中一个,对应的要学习的内容是:视频采集-系统API基础音视频任务列表音视频任务列表:点击此处跳转查看.目录(一)拍照系统API介绍(1.1)使用默认
Intent
拍照使用默认
LZacking.
·
2023-07-16 21:32
Android音视频
音视频
android
java
【解决】Caused by: java.lang.RuntimeException: Failure delivering result ResultInfo{who=null, request=99
出现问题的代码相机拍照请求代码:REQUEST_CODE_CAMERA=1//实例化一个
intent
,并指定action
Intent
intent
=new
Intent
(MediaStore.ACTI
qq_29750461
·
2023-07-16 17:14
java
数码相机
开发语言
【Android关键字】startActivityForResult/onActivityResult/setResult方法的使用
最近在写一个安卓程序,在程序里需要用到startActivityForResult这个
Intent
操作关键字,与该关键字有关的还有onActivityResult和setResult。
qq_29750461
·
2023-07-16 17:39
android
锁
加S锁select...lockinsharemode;X锁select...forupdate;表锁意向共享锁:
Intent
ionSharedLock,IS锁。当
王午阳_2020强化班
·
2023-07-16 16:25
Andorid 8.1关机ACTION_REQUEST_SHUTDOWN的变化.
平台RK3399+Android8.1问题在旧SDK使用的关机接口在8.1上测试不可用,代码如下://shutdownnowStringaction="android.
intent
.action.ACTION_REQUEST_SHUTDOWN
ansondroider
·
2023-07-16 15:25
android
关机
android Activity简单的跳转传值方法(wings6)
普通的跳转方法startActivity(new
Intent
(IndexActivity.this,BasicNaviActivity.class));Fragment跳转Activity
Intent
intent
Wings6
·
2023-07-16 14:22
LifecycleActivity
packagecom.example.hello;importandroid.os.Bundle;importandroid.app.Activity;importandroid.content.
Intent
spencer_tseng
·
2023-07-16 13:37
js-flex
Android 中跳转至系统设置界面大全:
ACTION_ACCESSIBILITY_SETTINGS://跳转系统的辅助功能界面
Intent
intent
=new
Intent
(Settings.ACTION_ACCESSIBILITY_SETTINGS
天幕丫
·
2023-07-16 07:40
Android 原生新的打开蓝牙策略(替代startActivityForResult)及配置蓝牙权限
最近在做一个Android平台的app,使用到了蓝牙功能,在中文互联网上查阅资料,普遍的做法是使用意图请求系统API:
Intent
enableBt
Intent
=new
Intent
(BluetoothAdapter.ACTION_REQUEST_ENABLE
为啥不吃肉捏
·
2023-07-16 03:16
Android
android
android
studio
java
前端
深入理解 TCP 协议:TCP_IP 历史与分层模型
历史与分层模型目标一、TCP/IP协议栈历史背景二、TCP/IP网络分层三、习题目标了解TCP/IP协议历史理解TCP/IP协议分层使用wireshare抓包,查看网络分层一、TCP/IP协议栈历史背景1969年,当时
Intent
韭菜鲜肉大馄饨
·
2023-07-16 03:16
深入理解
TCP
协议:从原理到实战
TCP
身份证读卡器安卓SDK在安卓12版本targetSdkVersion=32报错解决办法
TargetingS+(version31andabove)requiresthatoneofFLAG_IMMUTABLEorFLAG_MUTABLEbespecifiedwhencreatingaPending
Intent
.Stronglyconsid
DONSEE广东东信智能读卡器
·
2023-07-15 08:09
android
身份证读卡器
安卓
安卓12
4.2.2 Service 筑基
标注:本文为个人学习使用,仅做自己学习参考使用,请勿转载和转发2018-07-11:初稿,参考博主coder-pig0.引言
Intent
Service使用实例前台服务以及轮询的实现1.
Intent
Service
努力学习的安同学
·
2023-07-15 00:01
STEADY ME DAY 14
SENTENCE1051.thecompensatingadvantage补偿性优势2.thinklongand
intent
lyabout长时间并仔细思考3.reasoning推理leavethedooropen1
不骄不躁艰苦奋斗
·
2023-07-14 22:31
MySQL锁读这篇就够
共享锁S和排他锁X1.2意向锁(表锁)2.InnoDB锁实现方式:2.1记录锁(RecordLock)2.2间隙锁(GapLock)2.3下一键锁(NextKeyLock)2.4插入意向锁(Insert
Intent
ionLock
罗志宏
·
2023-07-14 19:40
数据库
mysql
mysql
微信分享返回软件WXEntryActivity无法关闭的问题以及分享中遇到的问题
,分享成功后在返回软件的时候停留在了WXEntryActivity空白界面,可是我代码里已经监听回调finish掉了啊看了下报错信息为/MicroMsg.SDK.WXApiImplV10:handle
Intent
fail
全能超人
·
2023-07-13 23:05
Android 报错,闪退(错误)日志保存到手机内存中,以文本文件的形式保存
1.直接贴代码importandroid.app.AlarmManager;importandroid.app.Pending
Intent
;importandroid.content.Context;importandroid.content.
Intent
鸟儿不吃草
·
2023-07-13 20:09
android
android
Android 11及以上出现
Intent
.resolveActivity(context.getPackageManager()) == null的处理
2、问题描述:targetSdkVersion>=android11的之后,以下代码capture
Intent
.resolveActivity(context.getPackageManager())直接返回了
碧水逍遥
·
2023-07-13 16:45
Android
Android
Studio
Android11
android
Android11
Android版本
android
studio
Android 中 startActivity() 执行流程
以sdk23源码为例:Activity.java:startActivity(
Intent
)==>startActivity(
Intent
,Bundle)==>startActivityForResult
雁过留声_泪落无痕
·
2023-07-06 14:49
容易内疚的人更加可信
PredictingTrustworthy
Intent
ionsandBehavior)中提出,拥有“易
·
2023-06-24 11:08
Android activity启动流程
2、AMS接收到启动请求后,交付ActivityStarter处理
Intent
和Flag等信息,然后再交给ActivityStackSupervisior/ActivityStack处理Activity
简书不简单iiii
·
2023-06-24 05:59
Android精简倒计时
().postDelayed(newRunnable(){@Overridepublicvoidrun(){SplashActivity.this.finish();//结束启动动画界面//跳转的页面
Intent
intent
·
2023-06-24 03:22
Android开发—基于OpenCV实现相机实时图像识别跟踪,android游戏开发大全第二版PDF
packagecom.sueed.imagerecognition;importandroid.Manifest;importandroid.content.
Intent
;importandroid.content.pm.PackageManager
m0_64603743
·
2023-06-23 22:54
程序员
面试
移动开发
android
通过MediaRecorder实现Android后台循环录像
importandroid.annotation.SuppressLint;importandroid.app.Service;importandroid.content.Context;importandroid.content.
Intent
wolf0706
·
2023-06-23 18:01
android
android
studio
java
Activity
1.Activity与Activity之间的通信(1).
Intent
/Bundle①可通过startActivity来开启②也可通过startActivityForResult来开启活动同时传递结果(2
米花噗噗
·
2023-06-23 14:41
android 常用action
Intent
intent
=context.getPackageManager().getLaunch
Intent
ForPackage("com.tencent.mobieqq");
intent
.setFlags
吉凶以情迁
·
2023-06-23 11:23
ChatBot聊天机器人学习1
(检索的过程中有延迟,设置比较快捷的检索方式)2.1
Intent
(意图)把一些相似功能的命令分在一起,例如“howareyou?”和"howdoyoudo?"
买橘子送洗面奶
·
2023-06-22 14:52
ChatBot
机器人
学习
Android--Activity的跳转
目录跳转所需的组件
Intent
(意图)简介语法示例要求创建Activity文件和布局文件项目结构布局文件activity_main.xmlactivity_inforset.xmlactivity_show.xml
ML.star
·
2023-06-22 10:59
Android
安卓
android
【Android】Activity根据标记跳转到第二个Activity里面的特定的Fragment里面
activity传的值(1,2,3,4)后,会自动加载对应的fragment.实现1.在MainActivity中启动SecondActivity并传递一个值://启动SecondActivity并传递一个值
Intent
intent
我又来搬代码了
·
2023-06-21 01:54
Android学习笔记
android
java
开发语言
安卓开发之广播接收器
搞安全的,用到哪学到哪广播的几个部分1.发送广播的逻辑(需要先定义
Intent
方法,再进行send)2.接收广播的逻辑(继承BroadcastReceiver方法)3.开关控制广播,也就是注册广播的过程
UmVfX1BvaW50
·
2023-06-21 01:03
安卓开发
android
2019-10-25 ARouter使用
原生的路由方案一般通过显式
intent
和隐式
intent
两种方案实现。
六桥明月夜
·
2023-06-20 20:46
组件化架构笔记(第二章)
组件化通信机制总所周知,Android提供了很多不同的信息的传递方式,比如在四大组件中本地广播、进程间的AIDL、匿名间的内存共享、
Intent
Bundle传递等等,那么在这么多传递方式,哪种类型是比较适合组件与组件直接的传递呢
风月寒
·
2023-06-20 19:06
react-native android 识别读取NFC卡信息
一、android原生端代码:1.在AndroidManifest.xml文件中加入下列代码添加NFC权限添加下列代码可通过NFC唤醒App2.在MainActivity文件中加入添加onNew
Intent
张瑞东
·
2023-06-20 18:31
android
react-native开发
android
react.js
react
native
nfc
java.lang.IllegalArgumentException Unknown URI: content://downloads/public_downloads/ 解决方案
当使用如下代码调用安卓的自带文件选择
Intent
intent
=new
Intent
(
Intent
.ACTION_GET_CONTENT);
intent
.setType("video/*");
intent
.addCategory
equation_l
·
2023-06-19 22:25
安卓开发踩坑记
安卓开发
Android - BroadcastReceiver 广播
优先级元素的android:priority属性中,数大优先高,取值为-1000-1000,也可调用
Intent
Filter对象setPriority()设置
南花_
·
2023-06-19 15:10
Android
java
安卓
android
android
studio
上一页
21
22
23
24
25
26
27
28
下一页
按字母分类:
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
其他