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
Android中intent的使用
Activity Intent intent = new Intent(); Bundle bundle = new Bundle(); bundle.
putString
·
2015-11-11 07:24
android
两个Activity跳转到同一个Activity并传值
Intent intent=new Intent(AActivity.this,CActivity.class); Bundle bundle=new Bundle(); bundle.
putString
·
2015-11-09 12:23
Activity
Android在
putString
和getString使用方法
函数:
putString
(String key,String value); 功能:将键为key的值为value。
·
2015-11-08 11:47
android
dhroid - Perference
SharedPreferences share=getSharedPreferences("name", MODE_WORLD_WRITEABLE); //存数据 share.edit().
putString
·
2015-11-07 12:31
id
WebView的loadUrl方法加载接口的时候,报堆栈内存溢出。
newIntent(getActivity(),DooliiWebAct.class); Bundlebundle1=newBundle(); bundle1.
putString
lzq520210
·
2015-11-05 17:00
android中如何发送及接收数据(两种方法)?
"); //发送数据方法2--复杂型 Bundle data = new Bundle(); data.
putString
("
·
2015-11-01 15:12
android
Bundle类
Bundle bundle=new Bundle();2.Bundle类中放入数据(key-value的形式,另一个Activity里面取数据的时候,通过key值找出对应的value值) bundle.
putString
·
2015-10-31 16:32
Bundle
使用活动首选项保存活动状态
; 2、获取活动首选项编辑器 SharedPreferences.Editor editor = uiState.edit(); 3、添加活动首选项的值 editor.
putString
·
2015-10-30 14:34
活动
android---- Serializable 和 Parcelable 区别
都是直接用putData的,例如: Intent it=new Intent(); Bundle bd=new Bundle(); bd.putInt("aa",20); bd.
putString
·
2015-10-30 14:45
Serializable
android SharedPreferences
getSharedPreferences("ServerAccess", Context.MODE_PRIVATE); Editor editor = perference.edit(); editor.
putString
·
2015-10-30 13:11
Bundle message 的使用
Message ms=newMessage(); Bundle bundle=newBundle(); ms.what=600; bundle.
putString
aicpzl
·
2015-10-28 13:00
android startActivityForResult(Intent intent, int requestCode) 整理与总结!
先是A传B: Bundle bundle = new Bundle(); bundle.
putString
("Dir&quo
·
2015-10-27 15:27
android internet参数传递
; Bundle bundle = new Bundle(); bundle.
putString
("NAME", "
·
2015-10-27 14:59
internet
android 保存 用户名和密码 设置等应用信息优化
传统的保存用户名,密码方式 SharedPreferences Editor editor = shareReference.edit(); editor.
putString
·
2015-10-27 13:20
android
Android中Activity数据返回(使用startActivityForResult)
startActivityForResult(Intent intent, Int requestCode)启动第二个页面(TwoActivity.java); Bundle bundle = new Bundle(); bundle.
putString
·
2015-10-23 08:29
每日一函数2015/05/17 ---2
onSaveInstanceState(Bundle outState) 这个方法或携带一个Bundle类型的参数,Bundle提过了一系列的方法用于保存数据,比如可以使用
putString
()方法保存字符串
·
2015-10-21 10:38
函数
在Activity之间使用Intent传值和Bundle传值的区别和方式
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),putXxx()用于往Bundle对象放入数据
Jy_
·
2015-09-29 17:00
Android SharedPreferences使用
=activity.getSharedPreferences(CACHE_NAME,0);SharedPreferences.EditorspEditor=prefs.edit();spEditor.
putString
xuanzhui
·
2015-09-23 15:00
Android
Android SharedPreferences使用
activity.getSharedPreferences(CACHE_NAME,0); SharedPreferences.EditorspEditor=prefs.edit(); spEditor.
putString
xuanzhui
·
2015-09-23 15:00
android
Android SharedPreferences使用
=activity.getSharedPreferences(CACHE_NAME,0);SharedPreferences.EditorspEditor=prefs.edit();spEditor.
putString
xuanzhui
·
2015-09-23 15:00
Android
Android之Intent附加数据的两种实现方法
具体如下:第一种写法,用于批量添加数据到Intent:Intentintent=newIntent();Bundlebundle=newBundle();//该类用作携带数据bundle.
putString
Ruthless
·
2015-09-21 12:30
Android进阶之SharedPreferences的基本用法
保存key-value对首先要指定一个文件名,然后使用
putString
的方法指定key和value。二、使用步骤A、存放数据信息1、实例化SharedPreferences对象。
chenliguan
·
2015-09-19 14:00
android
bundle的理解笔记
publicvoidonClick(Viewv){ Stringinfo=etName.getText().toString(); Bundlebundle=newBundle(); //保存输入的信息 bundle.
putString
杰杰顺利
·
2015-09-10 20:00
bundle的理解笔记
publicvoidonClick(Viewv){ Stringinfo=etName.getText().toString(); Bundlebundle=newBundle(); //保存输入的信息 bundle.
putString
杰杰顺利
·
2015-09-10 20:00
Android 中SharedPreferences的使用
SharedPreferences.Editor editor = getSharedPreferences("share", Context.MODE_PRIVATE).edit(); editor.
putString
haodiandian
·
2015-09-01 11:16
Android 中SharedPreferences的使用
SharedPreferences.Editor editor = getSharedPreferences("share", Context.MODE_PRIVATE).edit(); editor.
putString
haodiandian
·
2015-09-01 11:16
Intent附加数据的两种写法
第一种写法,用于批量添加数据到Intent: Intent intent = new Intent(); Bundle bundle = new Bundle();//该类用作携带数据 bundle.
putString
flying-tomato
·
2015-07-04 10:00
bundle类的作用
相对于Map,它提供了各种常用类型的putXxx()和getXxx()方法,如
putString
()和putInt()方法,putXxx()方法实现往Bundle对象里面放入数据,getXxx()实现从
donglindonglin
·
2015-06-23 09:40
Bundle
android 在子线程中如何把自定义对象传到handler中处理
Thread中要把数据传出去就用message、bundle、handler来配合使用,代码如下Message msg=new Message(); Bundle b=new Bundle(); b.
putString
King灵
·
2015-05-05 17:21
android
message
子线程
fragment (3) 切换fragemnt时传递参数和加动画效果
切换fragemnt时传递参数fragmentA中:LoadUrlFragmentloadUrlFragment=newLoadUrlFragment();Bundleb=newBundle();b.
putString
czcdms
·
2015-04-29 18:47
fragment
android fragment用get/setArguments()传值
2.在另一个类中为HelloFragment传值:HelloFragmenthello=newHelloFragment(); Bundlebundle=newBundle(); bundle.
putString
u010668907
·
2015-04-18 23:00
android
为Fragment传值
android中json的使用
sharedpreferences中是,可以采用如下方式: String s1 =new Gson().toJson(list); this.getSharedPreferences("key",0).edit().
putString
Langxingtianxi
·
2015-04-10 14:00
json
两个页面之间Bundle传值
newIntent().setClassName("com.bundletest","com.bundletest.Bundle02"); Bundlebundle=newBundle(); bundle.
putString
qq_15338105
·
2015-03-18 23:00
SharedPreferences
获取一个文本编辑器Editoreditor=sp.edit();用
putString
方法把字符串放入ed
qq_24082497
·
2015-03-09 19:00
Android Activity之间信息的传递
Bundle.
putString
("key","String")方法和Bundle.getString("key")方法放入与取出信息。 可
无用大叔
·
2015-02-23 18:25
android
intent
返回结果
意图
Android Activity之间信息的传递
Bundle.
putString
("key","String")方法和Bundle.getString("key")方法放入与取出信息。 可
无用大叔
·
2015-02-23 18:25
android
intent
返回结果
意图
Android 修改系统默认盘符名称
修改路径:frameworks/av/media/mtp/MtpServer.cpp2、修改方法:MtpResponseCodeMtpServer::doGetDeviceInfo(){ mData.
putString
silence_cdsn
·
2015-01-29 11:00
android
默认盘符名称
Handler的2种用法
可以使用Handler.用法一://在子线程中发送更新信息 Messagemsg=Message.obtain(); msg.what=1; Bundledata=newBundle(); data.
putString
pengkv
·
2014-12-23 22:00
UI
object
handler
线程安全
SharedPreferences、Thread、Toast、AsyncTask 容易出错的细节
代码示例如下:prefs.edit().
putString
("SHAKE",object.getString("shake")).commit();2、Thread线程,很久以前我new了一个线程,结果忘记
deaful
·
2014-12-03 16:37
Android
SharedPreferences、Thread、Toast、AsyncTask 容易出错的细节
代码示例如下:prefs.edit().
putString
("SHAKE",object.getString("shake")).commit();2、Thread线程,很久以前我new了一个线程,结果忘记
deaful
·
2014-12-03 16:37
Android
数据持久化之SP的优化—送工具类
先看普通使用SP存储String类型字符串吧 SharedPreferences.Editoredit=getSharedPreferences("config",0).edit(); edit.
putString
Jack_King007
·
2014-11-11 00:00
android代码碎片(—)
getSharedPreferences("mySelectedApps",MODE_WORLD_READABLE);使用Editor editor=preferences.edit();editor.
putString
fofu33
·
2014-10-13 11:00
代码
APP
HashMap
map
(Android review)Activity之间的数据传递
); getIntent(); intent.getStringExtra("username");2)以bundle的形式传 Bundlebundle=newBundle(); bundle.
putString
caihongshijie6
·
2014-08-20 20:00
Activity之传递参数
为Intent附加数据的两种写法第一种写法,用于批量添加数据到Intent:Intentintent=newIntent();Bundlebundle=newBundle();bundle.
putString
zhangyongfeiyong
·
2014-08-14 14:00
MD5j加密
如editor.
putString
("password",MD5Utils.encode(pwd));在Utils工具类里创建一个classpublicclassMD5Utils{ /** *采用MD5
EileenChing
·
2014-08-13 23:00
Android开发之Bundle与Intent详解
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),put
MaximusKiang
·
2014-07-21 21:00
android
Android开发
android应用
Bundle和Intent
存储方式一:SharedPreferences
Activity.MODE_PRIVATE); // 指定操作的文件名称 SharedPreferences.Editor edit = share.edit(); // 编辑文件 edit.
putString
DanielHan
·
2014-07-08 10:00
深入分析:Fragment与Activity交互的几种方式(二,使用Bundle)
publicvoidbutton(Viewview){ArgFragmentarg=newArgFragment();Bundlebundle=newBundle();bundle.
putString
(
huangyabin001
·
2014-06-27 13:00
异步网络请求的一些操作
publicvoidonSuccess(LoginResBeandata){ PreferenceUtil.putInt(Preferences.USER_ID,data.User.Id); PreferenceUtil.
putString
u014608640
·
2014-05-28 10:00
android开发 Activity间消息的传递方式
MainActivity.java Intentintent=newIntent(); Bundlebundle=newBundle(); bundle.putInt("data1",10); bundle.
putString
zzzzyu
·
2014-05-27 15:00
android
Android开发
activity切换
上一页
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
其他