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
一、传递一般数据类型? 比如:整型 浮点型 字符串等。 Intent?intent=new?Intent();
intent.setClass(MainActivity.this,?OtherActivity.class);
//putExtra方法?可以传递各种数据类型的值?第一参数是键值?...
分类:
移动开发 时间:
2014-09-22 16:21:43
阅读次数:
128
Intent updateIntent = new Intent(GetNoticeService.this,DetailGonggaoActivity.class);updateIntent.putExtra("type", "weidu");updateIntent.putExtra("titl...
分类:
移动开发 时间:
2014-09-16 12:28:20
阅读次数:
296
通过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
开始在网上搜索很多关于关机的程序。网上主流关机程序是在Java成发送要求关机的Intent.,如下:Intent intent = new Intent(Intent.ACTION_REQUEST_SHUTDOWN); intent.putExtra(Intent.EXTRA_KEY_CONFIR....
分类:
移动开发 时间:
2014-09-01 23:58:43
阅读次数:
470
?将数据发送给其他程序向其他应用程序发送文本数据Intent sendIntent = new Intent(); sendIntent.setAction(Intent.ACTION_SEND); sendIntent.putExtra(Intent.EXTRA_TEXT, "要分享的文本数据")...
分类:
其他好文 时间:
2014-08-22 19:27:09
阅读次数:
143
?调用系统窗口调用Google搜索Intent intent = new Intent();intent.setAction(Intent.ACTION_WEB_SEARCH);intent.putExtra(SearchManager.QUERY,"searchString");startActi...
分类:
其他好文 时间:
2014-08-22 12:53:39
阅读次数:
161
一、基本知识点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
/*发送一个自定义广播 *指定广播目标Action *可通过Intent携带消息 *发送广播消息 */ privatevoidsendMyBroadcast(){ Intentintent=newIntent("MyReceiver_Action"); intent.putExtra("msg","发送自定义的广播"); sendBroadcast(intent); }//自己写的一个广播类publicclass..
分类:
其他好文 时间:
2014-08-18 18:51:19
阅读次数:
177