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 小数据的保存
getSharedPreferences("zyj", Context.MODE_PRIVATE);Editor editor = sharedPreferences.edit();//获取编辑器editor.
putString
深圳_小白菜
·
2014-05-04 11:00
[android_gallery_4.0]gallery主要功能流程介绍
Bundledata=newBundle(); data.
putString
l0605020112
·
2014-04-30 15:00
Perference 升级版的使用 -dhroid文档
SharedPreferences share=getSharedPreferences("name", MODE_WORLD_WRITEABLE); //存数据 share.edit().
putString
duohuoteng
·
2014-04-16 12:00
id
Android之旅十三 android中的数据传递方法
之间总避免不了进行数据的传递,几种传递方式大致如下,各有各的用处:1、Intent携带简单的数据Intentintent=newIntent();Bundlebundle=newBundle();bundle.
putString
HarderXin
·
2014-04-03 10:00
开发
hello
Android
Android之旅十三 android中的数据传递方法
之间总避免不了进行数据的传递,几种传递方式大致如下,各有各的用处:1、Intent携带简单的数据Intentintent=newIntent(); Bundlebundle=newBundle(); bundle.
putString
HarderXin
·
2014-04-03 10:00
android
开发
hello
Android之旅十三 android中的数据传递方法
之间总避免不了进行数据的传递,几种传递方式大致如下,各有各的用处:1、Intent携带简单的数据Intentintent=newIntent(); Bundlebundle=newBundle(); bundle.
putString
HarderXin
·
2014-04-03 10:00
关于系统属性设置Settings.System.
putString
Settings.System.
putString
(getContentResolver(),"aaa", "true"); 这种才
sunj
·
2014-03-12 17:00
String
android > Intent 带参数跳转
Intent intent = new Intent(); Bundle band = new Bundle(); band.
putString
("
mft8899
·
2014-03-04 16:00
android
Bundle类
Bundle写入数据.IntentopenWelcomeActivityIntent=newIntent();BundlemyBundelForName=newBundle();myBundelForName.
putString
themagickeyjianan
·
2014-02-27 10:00
Android五种数据传递方法汇总 - 拙言的专栏 - 博客频道 - CSDN.NET
intentSimple.setClass(MainActivity.this,SimpleActivity.class); Bundle bundleSimple = new Bundle(); bundleSimple.
putString
·
2014-01-20 00:00
android
mobile
如何在JAVA 代码中调用PEGA Activity?
ParameterPageactivityKeys=newParameterPage();ParameterPageactivityParams=newParameterPage(); activityKeys.
putString
markGao
·
2014-01-15 11:00
Bundle类的作用
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),putXxx()用于往Bundle对象放入数据
jw20082009jw
·
2013-12-19 16:00
android
Bundle
android中SharedPreferences
context.getSharedPreferences(fileName, Context.MODE_PRIVATE) ; Editor editor = sharedPreference.edit() ; editor.
putString
jzzwy
·
2013-12-13 20:00
android中页面跳转以及数据在Activity之间的传递
上一个个Activity发送数据://数据传递发送数据到另外一个Activity Bundlebundle=newBundle(); bundle.
putString
("username",username
Henrry_Huang
·
2013-12-08 23:10
android
Bundle
intent
页面跳转
数据传递
gallery总结
进入Gallery以后通过startDefaultPage启动界面,data.
putString
(AlbumSetPage.KEY_MEDIA_PATH,DataManager.TOP_LOCAL_TIME_SET_PATH
banyao2006
·
2013-12-01 16:00
android中SharedPreferences的使用
getSharedPreferences("dujy",Context.MODE_PRIVATE);//dujy为文件名Editorsharedata =settings.edit();sharedata.
putString
djy1135
·
2013-11-09 11:00
Android飞行模式的打开与关闭
在Android4.2以前可以做到使用代码进行飞行模式的开关,步骤如下:1、首先需要在AndroidManifest.xml中加入权限:2、java代码中首先进行一个
putString
操作,然后发送一个广播
benbmw2008
·
2013-11-07 17:00
android
飞行模式
airplanemode
两个程序传值
Intent i = new Intent("com.xxx.yyy.MESSAGE"); Bundle b = new Bundle(); b.
putString
("
wang_peng1
·
2013-10-08 13:00
程序
Android中intent的使用
一、intent 发送intent的Activity Intentintent=newIntent(); Bundlebundle=newBundle(); bundle.
putString
("key_what
bx276626237
·
2013-09-23 14:00
android
Activity
Bundle
intent
flag
【Android】Intent中使用Extra传递数据
传值方法一Intentintent=newIntent(); Bundlebundle=newBundle();//该类用作携带数据 bundle.
putString
("name","tom"); bundle.
putString
oYunTaoLianWu
·
2013-09-22 00:00
android
intent
extra
传递数据
Bundle用法说明
newIntent();intent.setClass(ActivityMain.this,ActivityUser.class); Bundlebundle=newBundle(); bundle.
putString
lylzwsy
·
2013-09-17 08:00
android
Bundle
intent
Android Activity 之间传递数据以及 Activity关闭
ActivityB里传数据在ActivityA写以下代码Intentintent=newIntent(A.this,B.class);Bundlebundle=newBundle();bundle.
putString
yesjava
·
2013-09-16 20:00
Activity之间的数据传递
username);取:Stringusername=intent.getStringExtra("username");2)较多数据时存:Bundlebundle=newBundle(); bundle.
putString
caihongshijie6
·
2013-09-10 21:00
Android中Bundle类的作用
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),putXxx()用于往Bundle对象放入数据
chaozhung
·
2013-09-03 10:00
The method setClass(Context, Class>) in the type Intent is not applicable for the arguments (GameV
Bundle bun = new Bundle(); bun.
putString
·
2013-08-06 19:00
arguments
The method setClass(Context, Class>) in the type Intent is not applicable for the arguments (GameV
在当前短信内容的activity中写 Bundle bun = new Bundle(); bun.
putString
("message", "短信内容");
tw19811220
·
2013-08-06 13:00
android之bundle是什么_什么是bundle
Intentit=newIntent(A.this,B.class); Bundlebundle=newBundle(); bundle.
putString
("name","张三");
jason0539
·
2013-07-28 22:00
android之bundle是什么_什么是bundle
Intent it = new Intent(A.this,B.class); Bundle bundle = new Bundle(); bundle.
putString
("name
ydbc
·
2013-07-28 22:00
android
Android带参数链接请求服务器
publicvoidtaste(){//设默认值SharedPreferences.Editoreditor=this.getSharedPreferences("setting",0).edit();editor.
putString
·
2013-07-03 14:00
android
Android Handler不同界面发送数据
发送端界面:Bundlebundle=newBundle(); bundle.
putString
("introduce","啊啊啊啊啊"); Messagemessage=CompletePartnerInformationFragment.completePartnerInfHandler.obtainMessage
taotao19880301
·
2013-07-02 13:00
android
handler
当Activity结束时,把上一次的用户信息保存到SharedPreferences对象中去 四舍五入的method
SharedPreferences对象 SharedPreferencessetting=this.getSharedPreferences(Setting_Infos,0); setting.edit() .
putString
西行使者
·
2013-06-28 23:44
return
method
double
public
setting
Android基础-使用Bundle在Activity间传递数据
IntentIntentopenWelcomeActivityIntent=newIntent();BundlemyBundelForName=newBundle();myBundelForName.
putString
xu_zhike1979
·
2013-06-22 18:00
在Activity之间使用Intent传值和Bundle传值的区别和方式
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),putXxx()用于往Bundle对象放入数据
theworldsong
·
2013-06-17 19:00
android
对象
intent
Apache Mina 文档翻译 - 第八章 - IoBuffer
MINA没有直接使用NIO的ByteBuffer,因为以下原因: ByteBuffer缺少一些有用的getter和putter方法,例如fill, get/
putString
zjumty
·
2013-06-01 15:00
java
nio
Mina
SharedPreferences应用
SharedPreferencesshare=this.getSharedPreferences("faith",Context.MODE_PRIVATE); Editoreditor=share.edit(); editor.
putString
faith_boys
·
2013-05-11 00:00
Android中Bundle类的作用
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),putXxx()用于往Bundle
wode_dream
·
2013-05-01 11:00
如何在程序中设置 Android 的 IP、DNS 和网关?
163910_26207该方法适用于android2.3版本,4.0不得行首先设置权限设置的代码如下importandroid.provider.Settings; Settings.System.
putString
key123zhangxing
·
2013-03-26 22:00
Android的SharedPreferences保存与删除数据简单实例
SharedPreferencesdataBase; dataBase=getSharedPreferences(spName,0); 2、创建保存方法: publicvoidsaveData(){ dataBase.edit().
putString
mengdeqi
·
2013-03-25 10:38
android
保存与删除数据
Activity之间参数传递的方式
Intent附加数据的两种写法第一种写法,用于批量添加数据到Intent:Intentintent=newIntent();Bundlebundle=newBundle();//该类用作携带数据bundle.
putString
bailyzheng
·
2013-03-06 11:00
android不同Activity之间的数据共享
之间的消息传递机制实现数据共享Activity1: Intentintent=newintent(Activity1.this,Activity2.clas); Bundledata=newdata(); data.
putString
foreverkoking
·
2013-02-21 09:00
android
数据
Activity
SharedPreferences使用
SharedPreferencessp=getSharedPreferences(“key”, Context.MODE_PRIVATE); sp.edit().
putString
(“key”,msg)
wyyl1
·
2013-01-29 14:00
一个进程内的activity通信实现
,OtherActivity.this);2、创建要传递的数据Bundle,并给Intent附加上这些数据//Bundle类用作携带数据Bundlebundle=newBundle();bundle.
putString
hzw05103020
·
2013-01-28 16:00
mina 中的IoBufer(二)
MINA框架出于下面两个原因没有直接使用JDK中nio包内的ByteBuffe:没有提供可用的getters和putters方法,例如fill,get/
putString
,和get/putAsciiInt
Mr&Cheng
·
2013-01-23 17:00
Activity详解 Intent显式跳转和隐式跳转
2Intentintent=newIntent(Intent_Demo1.this,Intent_Demo1_Result1.class); 3 4Bundlebundle=newBundle(); 5bundle.
putString
andylao62
·
2013-01-23 11:00
android
android
android
Activity
Activity
intent
intent
Activity详解 Intent显式跳转和隐式跳转, 及多个Activity之间传值 总结
2Intentintent=newIntent(Intent_Demo1.this,Intent_Demo1_Result1.class); 3 4Bundlebundle=newBundle(); 5bundle.
putString
wulianghuan
·
2013-01-16 12:00
android
android
android
Activity
intent
Android中用广播从Service中向Activity发送信息
Intentintent=newIntent(BroadcastAction); Bundlebundle=newBundle(); bundle.
putString
天下杰论
·
2013-01-06 15:00
android 设置搜狗输入法为默认输入法
changedefaultimetosogou finalStringDEFAULT_IME_ID="com.sohu.inputmethod.sogou/.SogouIME"; Settings.Secure.
putString
cool_ping
·
2012-12-28 17:00
activity 见传递数据
传 Bundle bundle = new Bundle(); bundle.
putString
("goFromMain", "main"); Intent
zheyiw
·
2012-12-13 14:00
java
整理了一天的思路
Intentintent=newIntent();intent.setClass();Bundlebundle=newBundle();bundle.putDouble();bundle.
putString
xyg165
·
2012-12-09 23:00
android中的bundle
相对于Map,它提供了各种常用类型的putXxx()/getXxx()方法,如:
putString
()/getString()和putInt()/getInt(),putXxx()用于往Bundle对象放入数据
hellofeiya
·
2012-12-03 09:00
上一页
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
其他