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
putString
关于百度导航SDK没声音的一种解决办法
然后Bundlebundle=newBundle();//必须设置APPID,否则会静音bundle.
putString
(BNCommonSettingParam.TTS_APP_ID,"你申请的百度语音
咸鱼bang
·
2020-07-30 07:52
百度导航SDK
Android心得9--Bundle类和Intent意图
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),putXxx()用于往Bundle对象放入数据
weixin_30340745
·
2020-07-30 02:02
移动开发
Android 的notification 的intent 传值
发送notify:Intentintent=newIntent(this,MainActivity.class);Bundlebundle=newBundle();bundle.
putString
("lvbo
铝箔
·
2020-07-29 20:37
android面试复习(自己总结的知识点,小生不才,望大能指点一二,只言片语,聊表心意)
activity的生命周期onCreate,onStart,onResume,onPause,onStop,onDestroy3.activity保存状态(还有其他方法,待完善)用Bundle来保存状态属性,
putString
郭大帅
·
2020-07-28 21:29
Android
屏蔽安卓系统Home键
sys.home_key_to_app",1);Settings.System.putInt(getContentResolver(),"sys.home_key_to_app",0);写字符串Settings.System.
putString
我有我的方式
·
2020-07-16 06:08
Android
三星手机拍照回调拿不到路径
导致当前的Actvitiy被系统销毁掉了.找到了原因就有了解决办法:@OverrideprotectedvoidonSaveInstanceState(BundleoutState){outState.
putString
透过手指间看天
·
2020-07-16 05:28
Android
如果后台的Activity被系统回收了,如何在被回收之前保存当前状态。
PersistableBundleoutPersistentState){super.onSaveInstanceState(outState,outPersistentState);outState.
putString
吴庆森
·
2020-07-15 09:17
Android
理论知识
getSharedPreferences保存或获取
SharedPreferencessp=context.getSharedPreferences("user",Context.MODE_PRIVATE);sp.edit().
putString
("username
ya小亚
·
2020-07-14 21:09
Bundle、putExtra、setData
newIntent(A.this,B.class);//实例化it为A.class转接到B.classBundlebundle=newBundle();//新建Bundle实例为变量bundlebundle.
putString
qq_34140311
·
2020-07-14 18:58
学习之路
跨进程使用SharedPreference共享数据
SharedPreferencessp=getSharedPreferences("text",Context.MODE_PRIVATE);SharedPreferences.Editoreditor=sp.edit();editor.
putString
_bigin
·
2020-07-14 17:48
android
Bundle 保存各类型数据的总结
1.保存基本类型Bundle.
putString
(Stringkey,Stringvalue)Bundle.putStringArray(Stringkey,String[]value)Bundle.putBoolean
liucaoye
·
2020-07-14 14:11
Android
我的Android成长之路(11)----Android之SharedPreferences用法详解
SharedPreferences用法详解:1、存数据SharedPreferencessp=getSharedPreferences("sp_demo",Context.MODE_PRIVATE);sp.edit().
putString
小雨_
·
2020-07-14 09:41
Android
Fragment数据传递与数据回显
Fragment之间数据传递Fragment间数据的传递,是通过setArguments()和getArguments()这两个方法来进行实现传递数据Bundlebundle=newBundle();bundle.
putString
大盼
·
2020-07-14 06:47
Android
Fragment
数据传递
数据回显
a正向传值
Intentit=newIntent(MainActivity.this,Main2Activity.class);Bundlebd=newBundle();bd.
putString
("username
芥子劫
·
2020-07-11 00:17
android不同Activity之间的数据共享
之间的消息传递机制实现数据共享Activity1:Intentintent=newintent(Activity1.this,Activity2.clas);Bundledata=newdata();data.
putString
weixin_30602505
·
2020-07-08 14:26
Android:Service通知Activity更新界面
通过
putString
来装载数据,startServic
BAOLIANG196
·
2020-07-08 12:25
Android
Android之---Activity与Fragment之间的传值问题
Activity传值给Fragment添加Fragment的Activity:Fragment01fragment=newFragment01();Bundlebundle=newBundle();bundle.
putString
AM小可乐
·
2020-07-08 08:25
Android
Android开发默认记住用户名以及密码的简单实现。
它的本质是基于XML文件存储key-value键值对数据,通常用来存储一些简单的配置信息.步骤1:登录时把用户名,密码存储在SharedPreferenceUtil中SharedPreferenceUtil.
putString
Andy醒
·
2020-07-07 20:33
技术问题以及解决方法
Android
Android Fragment 和 Activity相互传值
Activity给Fragment传值1.1Activity中代码//senddatatofragmentBundlebundle=newBundle();bundle.
putString
("landId
imxiezy
·
2020-07-07 10:35
Android
Android中用广播从Service中向Activity发送信息
1.在Service中发送广播Intentintent=newIntent(BroadcastAction);Bundlebundle=newBundle();bundle.
putString
("***
AndyLizh
·
2020-07-07 08:05
Android开发常识
broadcast
android
Fragment和Activity的传值方法
StringorderStatus){MyOrderListFragmentfragment=newMyOrderListFragment();Bundlebundle=newBundle();bundle.
putString
BunnyCoffer
·
2020-07-06 21:19
android
安卓代码段--传递Bundle数据
Intentintent=newIntent(MainActivity.this,TestAcitvity.class);Bundlebundle=newBundle();bundle.
putString
tea9
·
2020-07-01 12:56
Android 使用SharePreferences保存List集合到本地
compile'com.google.code.gson:gson:2.8.1'保存List集合Listlist=newArrayList();Gsongson=newGson();Stringdata=gson.toJson(list);sp.
putString
System_err
·
2020-06-26 17:32
Android在调用像WPS这种第三方软件打开word时遇到ActivityNotFoundException
booleanopenFile(Stringpath){Intentintent=newIntent();Bundlebundle=newBundle();bundle.
putString
(WpsModel.OPEN_MODE
sunbinkang
·
2020-06-26 15:09
android
Android数据传递方式
传递数据Bundlebundle=newBundle();Intentintent=newIntent(MainActivity.this,TransmitActivity.class);bundle.
putString
kjy_112233
·
2020-06-26 01:05
android预览word(WPS预览)
下面是代码:(复制的)Intentintent=newIntent();Bundlebundle=newBundle();bundle.
putString
(WpsModel.OPEN_MODE,OpenMode.NORMAL
程序员中的小学生
·
2020-06-21 04:08
Android
android音乐播放器,锁屏的时候出现那个控制界面是怎么实现的
mRemoteControlClient.editMetadata(true);mEditor.putBitmap(MediaMetadataEditor.BITMAP_KEY_ARTWORK,XX);mEditor.
putString
JeffreyWorld
·
2020-04-13 05:50
关于Message及Bundle数据
一、Bundle数据1.建立BundleB=newBundle();2.放入数据B.put各种数据类型(标签,数据值)例:放入String数据B.
putString
("BtRxData",BlutoothRxData
渔农
·
2020-04-09 11:20
06_Android Fragment 与 宿主 Activity 间值传递
()方法就像Activity之间通过Intent.set/getExtral()方法传递/接收值类似,我们在宿主Activity中...Bundlebundle=newBundle();bundle.
putString
Android_小生
·
2020-04-06 06:14
android的一些乱七八糟
1intent传递参数的时候,用putExtra(key,value)方法,这里也可以用上bundle,bundle.
putString
("name","Ben");bundle.putInt("age
juneway
·
2020-04-04 02:25
SharedPreferences 笔记
简单的运用关键方法查看及删除跨运用访问封装好的工具类创建、写入和读取的操作SharedPreferencessp=getSharedPreferences("ZHIFU_progress",0);sp.edit().
putString
chauI
·
2020-03-25 08:36
Activity向Fragment传值
1.核心代码:发送数据//Activity传值,通过BundleBundlebundle=newBundle();bundle.
putString
("MainActivity","Hello,Fragment
Mr_LJ
·
2020-03-21 18:43
android零散知识点
上一个活动回收,当back回来时,文字没有了等,这时候用覆写回调方法把临时数据保存下来:onSaveInstanceState(Bundleb){super.onSaveInstanceState(b);b.
putString
wetersen
·
2020-03-14 07:46
android传值和取值
","jack");intent.putExtra("age",25);intent.putExtra("address","广州");Bundlebundle=newBundle();bundle.
putString
小重庆
·
2020-03-01 22:03
Kotlin安卓实战之SharedPreferences
SharedPreferences的魅力用法privatevaruserIdbyPreference("UserId","csdn41526")userId="test123"//自动调用SharedPreferences的
putString
i校长
·
2020-02-28 16:29
★21.SharedPreference
写入PreferenceManager.getDefaultSharedPreferences(context).edit().
putString
(/*字符串键*/,string).apply();读取
iDragonfly
·
2020-02-06 05:01
Android跨进程通信
Uri.parse("smsto:10086");Intentintent=newIntent(Intent.ACTION_SENDTO,uri);Bundlebundle=newBundle();bundle.
putString
Android_until
·
2020-01-08 10:01
登录注册 (记住密码 sharepreference的使用)
getSharedPreferences("wujay",MODE_PRIVATE);//私有数据Editoreditor=sharedPreferences.edit();//获取编辑器editor.
putString
开森先生
·
2019-12-25 18:41
Android仿微信支付密码弹出层
预览使用这个弹出层是一个DialogFragment,逻辑都封装在其内部,使用起来很简单:Bundlebundle=newBundle();bundle.
putString
(PayFragment.EXTRA_CONTENT
互联网技术分享
·
2019-12-25 16:35
关于android 5.0过场动画(android.view.ViewGroup.transformMatrixToGlobal(android.graphics.Matrix)' on a null object reference)
用android5.0过场动画HomeTopictopic=homeTopics.get(position);Bundlebundle=newBundle();bundle.
putString
(WebBrowseActivity
JonneyChan
·
2019-12-13 00:41
errors
argputstringinfgnewinstance,butitcanntgetargfromac.innewinststance,it'slike,args.
putString
("ARG_EVENT_ID_DISPLAY
_robin
·
2019-12-01 12:15
Bundle数据传递一个就够了
Intentintent=newIntent();Bundlebundle=newBundle();bundle.
putString
("xx","xx");intent.putExtra("data",
蜗牛爱爬行
·
2019-11-07 02:58
StartService和BindService
StartService启动方式Intentintent1=newIntent(this,MyIntentService.class);Bundlebundle=newBundle();bundle.
putString
东方轩宇
·
2019-11-02 07:03
数据存储与访问之——SharedPreferences保存用户偏好参数
1.保存和读取本地SharedPreferences上面这张图就概括了SharedPreferences的用法,所以这里就不细讲了,这里需要注意的一点是editor.
putString
(key,value
侯蛋蛋_
·
2019-11-01 16:43
Android仿微信支付密码弹出层功能
预览使用这个弹出层是一个DialogFragment,逻辑都封装在其内部,使用起来很简单:Bundlebundle=newBundle();bundle.
putString
(PayFragment.EXTRA_CONTENT
·
2019-09-24 15:04
Handler和Bundle传递数据
发送端://handlerMessagemsg=newMessage();msg.what=0;Bundledata=newBundle();data.
putString
("text",str);msg.setData
cf8833
·
2019-06-13 15:29
5.0不能隐式跳转
Intent{act=cn.scu.finch(hasextras)}Intenti=newIntent("cn.scu.finch");Bundlebundle=newBundle();bundle.
putString
Chen_Xx
·
2019-06-10 11:59
关于Android中获取Intent里的数据
//直接通过Intent接收StringmName=intent.getStringExtra("name");//通过Bundle发送Bundlebundle=newBundle();bundle.
putString
彧哥哥
·
2019-05-15 14:46
Android:Activity与Fragment、Service之间的数据通信
在Activity中创建Bundle,将数据以
putString
(key,value)形式放入bundle中,最后通过setArguments(bundle)方法,将其关联,在Fragment【与Activity
beibei_programme
·
2019-05-09 21:03
技术
Intent中Bundle传递数据
Intentintent=newIntent(MyApplication.getContext(),WebViewActivity.class);Bundleb=newBundle();b.
putString
bobob_
·
2019-02-19 10:04
上一页
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
其他