码迷,mamicode.com
首页 >  
搜索关键字:putextra    ( 181个结果
在Activity间传递数据的四种方法及返回结果
1.通用方法使用intent的PutExtra方法传入,用getExtra等方法获得数据主类Intent intent=new Intent(MainActivity.this,OtherActivity.class); intent.putExtra("name", ...
分类:其他好文   时间:2014-09-30 19:39:50    阅读次数:214
本地分享总结
文章调起来分享:自己程序调起来分享列表Intentemail=newIntent(android.content.Intent.ACTION_SEND);email.setType("text/plain");//设置邮件默认地址//email.putExtra(android.content.In...
分类:其他好文   时间:2014-09-30 01:43:51    阅读次数:317
android学习笔记(五)
一、传递一般数据类型? 比如:整型 浮点型 字符串等。 Intent?intent=new?Intent(); intent.setClass(MainActivity.this,?OtherActivity.class); //putExtra方法?可以传递各种数据类型的值?第一参数是键值?...
分类:移动开发   时间:2014-09-22 16:21:43    阅读次数:128
android PendingIntent 使用通知传递多个参数,及不覆盖的问题
Intent updateIntent = new Intent(GetNoticeService.this,DetailGonggaoActivity.class);updateIntent.putExtra("type", "weidu");updateIntent.putExtra("titl...
分类:移动开发   时间:2014-09-16 12:28:20    阅读次数:296
安卓通过putExtra传递数据的几种方式
通过intent传递数据时,使用以下代码报错: hMap map=(Map) parent.getItemAtPosition(position); intent.putExtra("userInfoMap", map); 但是使用以下的代码是正常的: HashMap map=(HashMap) parent.getItemAtPosition(position); inte...
分类:移动开发   时间:2014-09-14 23:42:07    阅读次数:737
android 2.3.4代码实现关机
开始在网上搜索很多关于关机的程序。网上主流关机程序是在Java成发送要求关机的Intent.,如下:Intent intent = new Intent(Intent.ACTION_REQUEST_SHUTDOWN); intent.putExtra(Intent.EXTRA_KEY_CONFIR....
分类:移动开发   时间:2014-09-01 23:58:43    阅读次数:470
19、内容共享
?将数据发送给其他程序向其他应用程序发送文本数据Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "要分享的文本数据")...
分类:其他好文   时间:2014-08-22 19:27:09    阅读次数:143
8、?系统窗口的调用
?调用系统窗口调用Google搜索Intent intent = new Intent();intent.setAction(Intent.ACTION_WEB_SEARCH);intent.putExtra(SearchManager.QUERY,"searchString");startActi...
分类:其他好文   时间:2014-08-22 12:53:39    阅读次数:161
(Android review)Activity之间的数据传递
一、基本知识点1、Activity之间传递数据1)传递基本类型或String intent.putExtra("username", username);  getIntent(); intent.getStringExtra("username");2)以bundle的形式传     Bundle bundle = new Bundle();    bundle.putString("use...
分类:移动开发   时间:2014-08-20 21:12:53    阅读次数:384
自定义广播Broadcast
/*发送一个自定义广播 *指定广播目标Action *可通过Intent携带消息 *发送广播消息 */ privatevoidsendMyBroadcast(){ Intentintent=newIntent("MyReceiver_Action"); intent.putExtra("msg","发送自定义的广播"); sendBroadcast(intent); }//自己写的一个广播类publicclass..
分类:其他好文   时间:2014-08-18 18:51:19    阅读次数:177
181条   上一页 1 ... 15 16 17 18 19 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!