Intent dataintent=new Intent(Intent.ACTION_SEND); dataintent.putExtra(Intent.EXTRA_EMAIL, to);//to为指定邮箱地址 dataintent.putExtra(Intent.EXTRA_TEXT,...
分类:
其他好文 时间:
2014-08-11 17:42:12
阅读次数:
197
1)A-->BstartActivity(Context,.class);2)A-->B-->AA:startActivityForResult(intent,0);(此处的0为requestCode)B:a)Intentintent=newIntent();/Intentintent=getIntent();b)intent.putExtra("","");c)setResult(0,intent);(此处的0为resultCode)finish();(销..
分类:
其他好文 时间:
2014-07-17 09:06:31
阅读次数:
247
增加快捷方式和删除快捷方式:
private void addShortcut() {
Intent shortcut = new Intent(
"com.android.launcher.action.INSTALL_SHORTCUT");
// 快捷方式的名称
shortcut.putExtra(Intent...
分类:
移动开发 时间:
2014-07-14 13:10:41
阅读次数:
258
intent的简单用法案例一传值:Intent intent=new Intent();intent.putExtra("extra", "这是页面一传来的值!");intent.setClass(Test_for_intentActivity.this, actpage2.class);start...
分类:
移动开发 时间:
2014-07-07 16:23:06
阅读次数:
322
打开系统相册获取图片并截取,代码相对简单 1 Intent intent = new Intent(Intent.ACTION_GET_CONTENT,null); 2 intent.setType("image/*"); 3 intent.putExtra("cro...
分类:
移动开发 时间:
2014-06-24 09:45:53
阅读次数:
360
Intent resultIntent = null; if
(!TextUtils.isEmpty(tid)){ resultIntent = new Intent("com.shijiebang.notify");
resultIntent.putExtra("_notify_url...
分类:
其他好文 时间:
2014-06-16 00:29:55
阅读次数:
297
intent大全:1.从google搜索内容Intent intent = new
Intent();intent.setAction(Intent.ACTION_WEB_SEARCH);intent.putExtra(SearchManager.QUERY,"searchString")start...
分类:
移动开发 时间:
2014-05-29 15:41:29
阅读次数:
430
1、Intent intent = new
Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*");
intent.putExtra("crop", true); in...
分类:
其他好文 时间:
2014-05-26 12:00:15
阅读次数:
230
1 调用发送短信功能:Uri smsToUri =
Uri.parse("smsto:");Intent sendIntent = new Intent(Intent.ACTION_VIEW,
smsToUri);sendIntent.putExtra("address", "123456");//...
分类:
移动开发 时间:
2014-05-07 20:37:58
阅读次数:
639
以微博分享为例:
1.public void onClickShare(View view) {
2.
3. Intent intent=new Intent(Intent.ACTION_SEND);
4. intent.setType("image/*");
5. intent.putExtra(Inten...
分类:
移动开发 时间:
2014-05-07 15:59:21
阅读次数:
396