码迷,mamicode.com
首页 >  
搜索关键字:putextra    ( 181个结果
调用系统邮箱客户端发送邮件到指定邮箱
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
界面跳转:Intent的使用
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
android一些系统相关的东西
增加快捷方式和删除快捷方式: private void addShortcut() { Intent shortcut = new Intent( "com.android.launcher.action.INSTALL_SHORTCUT"); // 快捷方式的名称 shortcut.putExtra(Intent...
分类:移动开发   时间:2014-07-14 13:10:41    阅读次数:258
Android 开发笔记——通过 Intent 传递类对象
intent的简单用法案例一传值:Intent intent=new Intent();intent.putExtra("extra", "这是页面一传来的值!");intent.setClass(Test_for_intentActivity.this, actpage2.class);start...
分类:移动开发   时间:2014-07-07 16:23:06    阅读次数:322
android 调用系统相机获取图片、调用系统相册获取图片,并对图片进行截取
打开系统相册获取图片并截取,代码相对简单 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
[备忘]Notification的实用
Intent resultIntent = null; if (!TextUtils.isEmpty(tid)){ resultIntent = new Intent("com.shijiebang.notify"); resultIntent.putExtra("_notify_url...
分类:其他好文   时间:2014-06-16 00:29:55    阅读次数:297
Android 系统调用 汇总
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
Intent启动照片或者相机
1、Intent intent = new Intent(Intent.ACTION_GET_CONTENT); intent.setType("image/*"); intent.putExtra("crop", true); in...
分类:其他好文   时间:2014-05-26 12:00:15    阅读次数:230
android中调用系统的发送短信、发送邮件、打电话功能
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
android Intent.createChooser 应用选择器
以微博分享为例:      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
181条   上一页 1 ... 16 17 18 19 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!