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
intentfilter
Android action使用大全
1.Intent的用法:(1)Action跳转1、使用Action跳转,当程序AndroidManifest.xml中某一个Activity的
IntentFilter
定义了包含Action,如果恰好与目标
超低空MC
·
2024-09-12 05:57
Android点滴
category
android
intent
action
type
【Android】Android中广播的基本使用
接受系统广播动态注册在Java代码中指定
IntentFilter
,然后想监听什么广播就添加对应的Action。动态注册的广播,一定要调用unregisterReceiver()方法取消注册。
後来的後来hugh
·
2024-09-01 18:48
应用内广播 - LocalBroadcastManager
所以对单个应用程序而言BroadcastReceiver是存在安全性问题的,相应问题及解决如下:1、当应用程序发送某个广播时系统会将发送的Intent与系统中所有注册的BroadcastReceiver的
IntentFilter
Candy有雪吃
·
2024-08-27 18:35
activity 深度进阶_进阶之路 | 奇妙的Activity之旅
欢迎大佬们光临寒舍:本篇文章需要已经具备的知识:Activity的基本概念AndroidManifest.xml的基本概念学习清单:Activity的生命周期Fragment的生命周期Activity的启动模式
IntentFilter
weixin_39972996
·
2024-02-03 10:02
activity
深度进阶
android 获取wifi和移动网络信号强度
IntentFilterintentFilter=newIntentFilter(WifiManager.RSSI_CHANGED_ACTION);registerReceiver(receiver,
intentFilter
杰奎琳子
·
2023-12-31 03:28
Android 循环滚动的列表-类似弹幕效果
importandroid.content.BroadcastReceiver;importandroid.content.Context;importandroid.content.Intent;importandroid.content.
IntentFilter
夢鑰
·
2023-12-30 23:24
android
Android 监听User 切换的方法
Android中监听用户从Owner>User>Guest之间切换的方法:IntentFilterintentFilter=newIntentFilter();
intentFilter
.addAction
冬田里的一把火3
·
2023-12-05 07:05
android
Intent与
IntentFilter
匹配规则
一、匹配规则1.action规则:
IntentFilter
中可有1~N个action属性;必有一个。
在下嗷呜
·
2023-10-30 15:48
android
java
Intent与
IntentFilter
在Android程序中,一般应用程序是由多个核心组件构成的。如果用户用户需要从一个Intent切换到另一个Activity,则必须使用Intent。实际上,Activity,Service和BroadcastReceiver这3种核心组件都需要使用Intent进行操作,Intent用于相同或者不同的应用程序组件间的绑定。一、Intent与IntentFilterIntent为意图,是程序各组件间进
在下嗷呜
·
2023-10-30 15:47
android
java
魅族8.1监听其他应用卸载广播问题
valfilter=
IntentFilter
()filter.addDataScheme("package")//安装卸载必须加filter.addAction(Intent.ACTION_PACKAGE_ADDED
Leo_o
·
2023-10-24 12:08
蓝牙通信
//注册广播funinitbc(){Log.e("TAG","开始注册蓝牙广播")//注册搜索结束广播valfinshed=
IntentFilter
(BluetoothAdapter.ACTION_DISCOVERY_FINISHED
梦源坦
·
2023-10-22 10:47
《android开发艺术探索》笔记
开发艺术探索笔记第一章Activity的生命周期和启动模式1.1生命周期1.1.1正常情况下的生命周期分析1.1.2异常情况下的生命周期分析1.2Activity的启动模式1.2.2Activity的Flag1.2.3
IntentFilter
chen_xiaoke
·
2023-10-18 20:35
学习用
android
exported uid
exported的默认值exported的默认值根据Activity中是否有
intentfilter
来定。没有任何的filter意味着这个A
奋飞的蜗牛ing
·
2023-10-16 22:54
Android组件系列——BroadCastReceiver
BroadcastReceiver,并重写onReceiver()2、通过Binder机制向AMS(ActivityManagerService)进行注册3、通过Binder机制向AMS发送广播4、AMS查找符合条件(
IntentFilter
mLuoya
·
2023-10-14 00:33
Android系统组件与控件
Android基础
无序广播
有序广播
LocalBroadCast
静态注册
动态注册
Android学习笔记(七)
Android学习笔记(七)注册广播动态注册监听网络变化:灵活性强创建一个
IntentFilter
的实例,并且给它添加了一个值为android.net.conn.CONNECTIVITY_CHANGE的
learnNG
·
2023-10-08 07:00
android
Android 路由(Router)
,不过就算是简简单单的页面跳转,随着时间的推移,也会遇到一些问题:(1)集中式的URL管理:谈到集中式的管理,总是比较蛋疼,多人协同开发的时候,大家都去AndroidManifest.xml中定义各种
IntentFilter
潇洒人生_cca2
·
2023-09-30 03:44
Android13 动态切换默认laucnher
importandroid.content.ComponentName;importandroid.content.Context;importandroid.content.Intent;importandroid.content.
IntentFilter
青春给了狗
·
2023-09-24 05:38
java
前端
开发语言
IntentFilter
笔记
一、action中可以有多个action,Intent只要匹配其中1个action即匹配成功没有action,任何Intent无法与之匹配中有action,Intent中没有action时可以与之匹配成功中有action,Intent中也有action时,必须命中中的一个action才能匹配成功Intent中的action必须命中中的一个action,才能匹配成功。Intent无action时匹配
MOONNIFE
·
2023-09-20 07:33
Android
笔记
android
android进程间通信有那些方法,Android中进程间通信的几种方式(学习中的笔记)...
=i){System.out.println("被调用的Activity中获取数据:"+i.getIntExtra("id",0));}清单文件中的Activity中添加如下属性(如果有
intentfilter
weixin_39917718
·
2023-09-16 10:42
activity启动
activity所在栈的名称,不指定的话则默认是当前包名,比如A应用启动了B应用的activityC,指定了C的allowTaskReparenting为true的话,在启动B应用后C会自动进入到B的任务栈中
intentFilter
暖冬不暖
·
2023-08-26 04:34
Android静态安全检测漏洞修复
修复建议:如果应用的Activity组件不必要导出,或者组件配置了
intentfilter
标签,建议显式设置组件的android:exported属性为false;如果组件必须要提供给外部应用使用,建议对组件进行权限控制
听话哥
·
2023-08-20 10:12
RK android13静默安装和静默卸载
importandroid.content.BroadcastReceiver;importandroid.content.Context;importandroid.content.Intent;importandroid.content.
IntentFilter
m0_71008721
·
2023-08-15 20:37
android
【Android】广播的原理及实现步骤
ActivityManagerService)来进行交互交互过程广播接收者通过Binder机制在AMS注册广播发送者通过Binder机制向AMS发送广播AMS根据广播发送者要求,在已注册列表中,寻找符合条件的接受者(依据:
IntentFilter
只有青山如洛
·
2023-08-10 22:27
IntentFilter
匹配规则
IntentFilter
直译过来就是意图过滤器,我们可以通过它的匹配规则去打开我们想要打开的一类Activity,例如我们想要打开手机浏览器,但是我们不知道用户安装了哪些浏览器或者习惯于使用哪个浏览器,
12313凯皇
·
2023-08-09 23:16
wifi工具类
importandroid.content.BroadcastReceiver;importandroid.content.Context;importandroid.content.Intent;importandroid.content.
IntentFilter
xiaoerbuyu1233
·
2023-08-07 15:07
android
uni-app基于nativejs实现USB-OTG通讯
constmain=plus.android.runtimeMainActivity()constIntentFilter=plus.android.importClass('android.content.
IntentFilter
十八里8837
·
2023-07-25 03:26
Activity的启动
一、如何跨App启动Activity共享UId的App使用exported使用隐式调用
IntentFilter
跨App启动Activity注意点跨App启动Activity首先要明确App之间的关系外部可启动
郑子
·
2023-07-24 06:21
Android:基础篇
android
Android - BroadcastReceiver 广播
优先级元素的android:priority属性中,数大优先高,取值为-1000-1000,也可调用
IntentFilter
对象setPriority()设置
南花_
·
2023-06-19 15:10
Android
java
安卓
android
android
studio
android监听蓝牙连接状态
IntentFilterintentFilter=newIntentFilter();
intentFilter
.addAction(BluetoothAdapter.ACTION_STATE_CHANGED
一禅-小和尚
·
2023-06-13 00:58
android
Android中获取亮屏状态和监听亮屏和灭屏事件
importandroid.content.BroadcastReceiver;importandroid.content.Context;importandroid.content.Intent;importandroid.content.
IntentFilter
火龙映天
·
2023-04-21 13:32
Android相关
android
PowerManager
亮屏灭屏
Android广播注册
广播注册分为静态注册和动态注册,动态注册是在代码里实现,静态注册是在xml中注册动态注册这是动态注册一个本地广播注册是通过registerReceiver()函数注册,需要接受的参数一个Receiver实例和一个
IntentFilter
能饮一杯无n
·
2023-04-20 07:51
Android
android
android
studio
gradle
intent (意图)和 intent filter( 意图过滤器)
本文粘贴复制于两位博主:Intent和
IntentFilter
的区别详解_lizhong-CSDN博客简述
IntentFilter
(意图过滤器)-DarJeely-博客园(cnblogs.com)一、intent
神秘的小胖籽
·
2023-04-19 18:39
Android 发送接收广播原理
动态注册广播接收者应用组件向AMS注册IIntentReceiver和
IntentFilter
,当AMS派发其它组件请求派发的Intent时,通过其注册
朱兰婷
·
2023-04-17 01:11
Android魔幻之旅(二):Intent 和 Intent Filter
本文内容:Intent类型显式Intent隐式Intent构建Intent显式Intent示例隐式Intent示例强制使用应用选择器接收隐式
Intentfilter
示例Intent解析操作测试类别测试数据测试
人间入画
·
2023-04-15 03:36
Android-Broadcast
注册广播的两种方式动态注册在java代码中指定
IntentFilter
,然后添加不同的Action即可,想监听什么广播就写什么Action,另外动态注册的广播一定要调用unregisterReceiver
哎呦呦胖子斌
·
2023-04-01 00:03
从入门到实战,Android学习路线大全,程序员翻身之路
多Acitivity管理:AndroidManifest.xml文件的作用Intent的使用方法使用Intent传递数据的方法启动Activity的方法
IntentFilter
的使用方法ActivityGroup
智恩架构师
·
2023-03-29 08:47
程序员
架构
移动开发
android
Android开发艺术探索 | Activity的生命周期和启动模式
就能让它跑到别的Activity里去.现在在通过这本书重新认识一下Activity.本博文借鉴了厘米姑娘旨在培养自己养成好的写作习惯,已与作者联系.学习清单:Activity生命周期全解析Activity的启动模式
IntentFilter
1ceCube
·
2023-03-20 22:28
Activity--
IntentFilter
的匹配规则
隐式调用:需要intent能够匹配目标组件的
IntentFilter
中所设置的过滤信息,
IntentFilter
的过滤信息有action、category和data。二、Int
小迷糊_dcee
·
2023-03-11 20:46
LocalBroadcastManager源码解析
用法://在onCreate中注册LocalBroadcastManager.getInstance(this).registerReceiver(mReceiver,
intentFilter
)//在onDestroy
吉斯卡
·
2023-01-27 22:52
Android四大组件中的Activity
目录一、关于Activity二、Intent和
IntentFilter
三、显示Activity和隐式Activity四、Activity传值方法一:intent方法二、Bundle五、得到Activity
Mr YiRan
·
2023-01-26 05:25
Android
android
android
studio
Android
IntentFilter
的匹配规则示例详解
目录前言一、Activity的调用模式1、显式调用2、隐式调用二、
IntentFilter
匹配规则详解1、Action的匹配规则2、category的匹配规则3、data的匹配规则data的注意事项三、
·
2022-12-12 04:26
IntentFilter
使用
IntentFilter
使用
intentFilter
作用当发送一个隐式Intent后,Android系统会将他与程序中的每一个组件的过滤器进行匹配,匹配属性有action、data、category,需要这三个属性都匹配成功才能唤醒相应的组件
Mokapeng
·
2022-07-21 20:47
安卓基础
android
Android 面试系列(一)Android 基础
Activity启动模式launchMode使用Intent标记taskAffinity清除返回栈allowTaskReparenting使用Intent隐式启动Activity(
IntentFilter
逆袭的L
·
2022-04-25 09:11
面试
Android
基础
android
面试
Android程序活动单元Activity
4.1.1生命周期状态4.1.2生命周期方法4.2Activity的创建、配置、开启和关闭4.2.1创建Activity4.2.2配置Activity4.2.3开启和关闭Activity4.3Intent与
IntentFilter
4.3.1Intent4.3.2IntentFil
ErrorError!
·
2022-03-20 07:33
移动应用开发
学习笔记
android
java
android
studio
ui
后端
Android 白学了!
IntentFilter
是什么?有哪些使用场景?谈一谈startService
·
2022-03-04 15:48
android程序员面试问题
Intent以及
IntentFilter
详解
image.png一、Intent与组件的关系我们知道安卓有四大组件,其中的三种,Activity,Service,BroadCast都可以通过Intent进行数据传递。(1)启动Activity,通过Intent传入startActivity方法来启动一个Activity的实例,同时,Intent也可以携带数据,传递给新的Activity。(2)通过Context.startService()启
kevenZheng
·
2022-02-20 04:41
Intent
隐式Intent:通过
IntentFilter
来实现的,它一般用在没有明确指出目标组件名称的前提下,一般是用于在不同应用程序之间。
萝卜枣
·
2022-02-14 10:30
Android Activity任务栈、启动模式以及
IntentFilter
匹配规则
任务栈先来一段来自官网的介绍Ataskisacollectionofactivitiesthatusersinteractwithwhenperformingacertainjob.Theactivitiesarearrangedinastack—thebackstack)—intheorderinwhicheachactivityisopened.Forexample,anemailappmig
不爱牧羊的牧羊犬
·
2022-02-10 08:44
android:exported
exported的默认值根据Activity中是否有
intentfilter
来定。没有任何
奋飞的蜗牛ing
·
2022-02-10 03:44
Android之Intent Filter匹配规则(隐式Intent跳转)
本篇文章内容来自于:你必须弄懂的
IntentFilter
匹配规则史上最全intent-filter匹配规则,没有之一目录什么是
IntentFilter
(
intentFilter
+data+category
Amy_LuLu__
·
2022-02-05 12:18
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
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
其他