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.putExtra
Intent传递对象
中添加一些附加数据,以达到传值的效果,比如在FirstActivity中添加如下代码Intentintent=newIntent(HLActivity.this,SecondActivity.class);
intent.putExtra
小菜鸟的成长
·
2020-08-02 22:50
启动一个Service进行处理
;@OverridepublicvoidonClick(Viewv){//TODOAuto-generatedmethodstubswitch(v.getId()){caseR.id.button1:
intent.putExtra
大城小小爱
·
2020-08-02 22:35
Service
【Android】安卓开发之将上一个Activity的数据传递给下一个Activity
有时候我们希望一些数据可以在活动之间传递,这时候我们可以借助Intent实现1、在第一个活动Register添加如下语句:Intentintent=newIntent(Register.this,RegisterPart2.class);
intent.putExtra
hystudio_lzu
·
2020-08-02 21:47
【Android开发】基础篇
有序广播,粘性广播
2.发送有序广播:sendOrderedBroadcast(intent,null);Intentintent=newIntent("www.wangpeng");
intent.putExtra
("name
BugGodFather
·
2020-08-02 21:03
Android
学生管理系统-基于SQLite数据库的Android应用
intposition,longid){Intentintent=newIntent(StudentsManagerActivity.this,sql.yxy.DetailActivity.class);
intent.putExtra
玉令天下
·
2020-08-02 21:18
Android1Intent 部分作用
activity之间传递传值:Intentintent=newIntent(Test_for_intentActivity.this,actpage2.class);
intent.putExtra
("extra
山小小
·
2020-08-02 21:49
Android 四大组件之BroadcastReceiver(发送有序无序广播)
无序广播发送/**无序广播*/Intentintent=newIntent(Broadcast);
intent.putExtra
("msg","无序广播已发送");sendBroadcast(intent
Rlingge
·
2020-08-02 20:37
Android拍照上传至PHP服务器并写入MySql数据库(下)
32tags:PHPAndroidAndroid实现调用系统相机,拍照:Intentintent=newIntent(MediaStore.ACTION_IMAGE_CAPTURE);getFileUri();
intent.putExtra
adamin90
·
2020-08-01 13:52
broadcastreceiver 静态注册无法正常运行
Intentintent=newIntent();intent.setAction("com.example.action.CRAZY");
intent.putExtra
("msg","简单消息");intent.setComponent
云端橘子
·
2020-08-01 01:38
Android
Android 调用系统相机并加时间水印
Intentintent=newIntent(MediaStore.ACTION_IMAGE_CAPTURE);//获取文件Filefile=newFile(tempPicPath);//拍照后原图回存入此路径下
intent.putExtra
星海之辰
·
2020-08-01 01:57
Android
android 8.0 ,9.0 静态广播不显示问题处理
getPackageName());具体代码如下Intentintent=newIntent();intent.setAction("hly");intent.setPackage(getPackageName());
intent.putExtra
胡小牧
·
2020-07-31 22:33
Android
知识点记录
kotlin点击退出/切换账号返回登录页面
singleTask在退出时触发,清除所有缓存(如token,全局状态等),跳回main页面并设置flag便于退出valintent=Intent(this,MainActivity::class.java)
intent.putExtra
差很多先生CL
·
2020-07-31 20:51
android 点击查看大图
.使用方式Intentintent=newIntent(FriendCircleActivity.this,ImageGralleryPagerActivity.class);//0,索引,第几张图片
intent.putExtra
康桑思密达
·
2020-07-31 18:08
android 打开微信扫一扫
Contextcontext){try{Intentintent=context.getPackageManager().getLaunchIntentForPackage("com.tencent.mm");
intent.putExtra
Vali Z
·
2020-07-31 13:20
Android
Android 解决静态广播收不到的问题
两个参数,一个是包名,一个是receiver所在路径+类名Intentintent=newIntent("com.example.sendbroadcast.faultmsg");
intent.putExtra
vida990717
·
2020-07-31 12:36
Android
Android file transfer/Upload
上传文件,可以尝试如下:Intentintent=newIntent();intent.setAction(Intent.ACTION_SEND);intent.setType("image/jpg");
intent.putExtra
durone
·
2020-07-31 11:45
Android
Android Action静态广播收不到(系统版本8.0)
AndroidAction静态广播收不到(系统版本8.0)Intentintent=newIntent();
intent.putExtra
("Object",object);intent.setAction
Ani_aierJun
·
2020-07-31 11:37
知识点
四大组件(android)
问题解决
跳转微信扫一扫
=newIntent();intent.setComponent(newComponentName("com.tencent.mm","com.tencent.mm.ui.LauncherUI"));
intent.putExtra
正在吃饭的晓雨
·
2020-07-31 11:22
流水账
android中使用Intent在activity之间传递数据
传递数据的简单使用:1.使用intent传递数据:首先将需要传递的数据放入到intent中Intentintent=newIntent(MainActivity.this,OtherActivity.class);
intent.putExtra
读行游
·
2020-07-30 22:33
Android的录像实现
Android的录像使用系统自带的相机进行录像,通过Intent进行跳转调用系统的进行录像,在跳转过程中可以通过
intent.putExtra
()进行设置输出的位置,视频的质量,视频的长度MediaStore.EXTRA_OUTPUT
Maurice001
·
2020-07-30 15:27
Android开发
关于Android调用系统Action录制视频
Intentintent=newIntent(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra
(MediaStore.EXTRA_DURATION_LIMIT
Mirage520
·
2020-07-30 14:10
Android
notification通过intent传递参数到activity(多个消息参数一样)
中显示不同的消息类型,消息通过notification触发,代码如下:Java代码Intentintent=newIntent(context,NotificationDetailsActivity.class);
intent.putExtra
zhang6625214
·
2020-07-30 06:45
Android开发
Android通过putExtra()传递JavaBean对象,属性值为null问题的解决
前言:在页面Activity跳转时,通过
intent.putExtra
()传递数据,出现接收到的实体类对象属性为空的问题解决。一.数据的组装跳转,传递一个序列化的实体对象。
大脑补丁
·
2020-07-30 05:48
Android
android 由于使用Intent传送敏感数据(username password)的安全性考虑
EditTextpassword;password.setInputType(0x81);2.在几个Acitivy中使用Intent传送数据的安全性考虑方式一:Intentintent=newIntent();
intent.putExtra
weixin_41508948
·
2020-07-30 04:15
移动app安全测试
Android复习笔记--Intent
#显示Intent主要主要用于启动已知的组件//发送方Intentintent=newIntent(FirstActivity.this,SecondActivity.class);
intent.putExtra
weixin_34341117
·
2020-07-30 03:01
notification通过intent传递参数到activity
中显示不同的消息类型,消息通过notification触发,代码如下:Intentintent=newIntent(context,NotificationDetailsActivity.class);
intent.putExtra
wangzt2008
·
2020-07-30 02:18
Android开发
android 由于使用Intent传送敏感数据(username password)的安全性考虑
EditTextpassword;password.setInputType(0x81);2.在几个Acitivy中使用Intent传送数据的安全性考虑方式一:Intentintent=newIntent();
intent.putExtra
Smallwq
·
2020-07-30 01:47
android
Android中Intent传值
1使用
intent.putExtra
传递int,String值传值界面Intentintent=newIntent(Morning.this,NoonActivity.class);
intent.putExtra
胡小牧
·
2020-07-29 22:11
Android
Android
知识点记录
intent.putExtra
()方法参数详解
intent.putExtra
()方法详解putExtra("A",B)中,AB为键对值,第一个参数是键名,第二个参数为键名对应的值。
Rick.Lau
·
2020-07-29 21:46
android
getIntent().getExtras().getString()为null的问题
写intent跳转时,activity传值Intentintent=newIntent(context,HomeActivity.class);
intent.putExtra
("title","标题")
Ltatrium
·
2020-07-29 21:23
通过notification启动一个activity时,Intent数据不更新
Intentintent=newIntent(this,RingBellActivity.class);LogInfo.d("alarmID="+alarmID);
intent.putExtra
("AlarmID
suwei95
·
2020-07-29 20:16
android
android
intent.putExtra
安卓中Notification传递参数
Intentintent=newIntent(this,NotificationView.class);intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intent.putExtra
liningzheng
·
2020-07-29 20:51
PendingIntent, Notification,broadcastReceiver使用遇到的坑
先上代码:一、pendingIntent结合闹钟发送定时广播Intentintent=newIntent(KeyVaule.CLOCK_IN_ACTION_NAME);
intent.putExtra
(KeyName.SOURCE
hpp_1225
·
2020-07-29 19:43
Android
安卓开发遇到问题总结
Activity之间用
intent.putExtra
传值,bundle.getString取值为空null
caseR.id.cv_matchdetails_sponor:Intentintent=newIntent(MatchDetailsActivity.this,SponsorActivity.class);
intent.putExtra
hdl934437764
·
2020-07-29 19:04
Android
Bug解决
绕过android.permission.STOP_APP_SWITCHES权限
因为某些原因,系统做了按home键退出应用后点击悬浮窗跳转activity延迟5s的限制.最近翻帖子.发现Intentintent=newIntent(this,aaaa.class);
intent.putExtra
o丶远分
·
2020-07-29 17:44
android
流水账
intent listview gridview 笔记
newIntent();intent2.setClass(MainActivity.this,SecondActivity.class);2、单个数据传输传输:Intentintent=newIntent();
intent.putExtra
a171968262
·
2020-07-29 16:29
笔记
Android开发经验之intent传递大数据
把图片传递给另外一个ActivityMainActivity的主要代码:复制代码代码如下:Intentintent=newIntent(MainActivity.this,TranActivity.class);
intent.putExtra
心海-飞翔
·
2020-07-29 14:05
android
短视频平台搭建Android Camera 录制视频,可限制时长,限大小
Contextcontext,intlimit_time,intsize){Intentintent=newIntent();intent.setAction(MediaStore.ACTION_VIDEO_CAPTURE);
intent.putExtra
云豹网络科技
·
2020-07-29 01:11
技术类
python
android
ffmpeg
操作系统
大数据
Android 用
Intent.putExtra
传送自定义的对象实例
主程序packagecom.example.hp.testfunction.Intent;importandroid.content.Intent;importandroid.support.v7.app.AppCompatActivity;importandroid.os.Bundle;importcom.example.hp.testfunction.R;/***为了实现Intent.putE
turuihao123
·
2020-07-28 12:30
Android 关机实现
利用系统签名来获取权限关机关机代码如下:privatevoidshutDown(){Intentintent=newIntent("android.intent.action.ACTION_REQUEST_SHUTDOWN");
intent.putExtra
Okloong
·
2020-07-28 02:59
Android
tabhost 如何给tab对应的Activity传递参数
tab时候,给这个activity传递的参数不同这个参数该怎么传递呢//这里有个IntentIntentintent=newIntent(this,CrossedWorkActivity.class);
intent.putExtra
lanyan1214
·
2020-07-28 01:25
Android开发
14.2--使用Intent 传递对象
valintent=Intent(this,SecondActivity::class.java)
intent.putExtra
("string_data","hello")int
csdn_DaShuiNiu
·
2020-07-27 15:19
Kotlin第一行代码
Service的相关知识
service服务启动:1.传统做法:2.简便做法:service服务关闭:1.传统做法:2.简便做法:service数据传递:传递:
intent.putExtra
("data");获取:intent.getStringExtra
Jeled
·
2020-07-15 15:02
android
Bundle传值与取值
Intentintent=newIntent();intent.setClass(this,SubActivity.class);//直接添加//
intent.putExtra
("MyData",newParcelableData
xiejunna
·
2020-07-15 10:02
android
技术文档
Android页面跳转以及数据传递实现
Android的页面跳转通过intent来实现,如果要传递数据,可以通过bundle类来实现,或者直接通过
intent.putExtra
()方法,把键值对传进去。
书剑小Q
·
2020-07-15 10:10
Android常用功能实现
android使用Intent传递数据 2 种方式(Intent和Bundle)
Activity之间传递数据,最终都是通过Intent传递,但设置数据和保存数据方式有两种(使用Intent和Bundle),分别对应如下:设置数据(MainActivity.java)方法一:1.直接用
intent.putExtra
Ben_love_Nicole
·
2020-07-15 09:06
Android开发
Android---Intent传递字段为Bundle类型的实体
在页面跳转的时候,我们经常使用Intent来传递数据,比如我们要传递一个BundleBean,我们使BundleBean实现Serializable或者Parcelable接口,通过
intent.putExtra
Jzd_dev
·
2020-07-15 01:21
android开发
Android - day one 学习笔记
1.人品计算器参数从mainActivity传递给新打开的Activity,使用
intent.putExtra
("name",name)来传递。
sSsexy_-Man
·
2020-07-15 00:42
android中从activity跳转到指定fragment
先跳转到fragement所在的activity,在根据情况判断该显示哪个fragmentIntentintent=newIntent(this,MainActivity.class);
intent.putExtra
simplenba
·
2020-07-14 22:08
安卓通过putExtra传递数据的几种方式
通过intent传递数据时,使用以下代码报错:hMapmap=(Map)parent.getItemAtPosition(position);
intent.putExtra
("userInfoMap",
shanhuhauu
·
2020-07-14 22:20
android
上一页
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
其他