码迷,mamicode.com
首页 >  
搜索关键字:Intent    ( 3334个结果
采用contentprivider扫描手机SD卡的图片资源
Intent inten = new Intent( Intent.ACTION_PICK,MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(inte...
分类:移动开发   时间:2014-05-26 22:50:19    阅读次数:369
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】Android 发送短信和打电话的方法
发送短信的方法有两种方法可以实现发送短信,其一是使用intent-startActivity,URI数据格式为"smsto:num",调用的action为Intent.ACTION_SENDTO:Uri uri = Uri.parse("smsto:5554");Intent it = new In...
分类:移动开发   时间:2014-05-26 00:37:31    阅读次数:406
【Android】安卓中常用的图片加载方法
一、通过相机选图片:布局文件:代码:package uk.ac.essex.camerademo1;import java.io.File;import android.app.Activity;import android.content.Intent;import android.graphic...
分类:移动开发   时间:2014-05-26 00:30:43    阅读次数:389
Android的intent之间复杂参数的传递
本篇文章来源于 Linux公社网站(www.linuxidc.com) 原文链接:http://www.linuxidc.com/Linux/2012-04/58732.htm一、传递List和List以下以传递List为例,发送List语法为:intent.putStringArrayListEx...
分类:移动开发   时间:2014-05-25 03:25:58    阅读次数:264
Android:使用电话拨号器
1、申请权限:2、创建意图(Intent):Intentintent=newIntent();intent.setAction("android.intent.action.CALL");//操作系统会自动为Intent注册类别:android.intent.category.DEFAULT//i....
分类:移动开发   时间:2014-05-23 07:07:45    阅读次数:282
Intent 和 Intent Filter简介
Intent 是一个消息对象,你可以用它向另一个 app 组件发生动作请求。尽管 Intent 在促进组件间沟通的方式有多种,主要有个以下三种基本方式:...
分类:其他好文   时间:2014-05-22 23:01:27    阅读次数:286
Android:调用打电话和发短信及intent一些其他用法
1.打电话 可以自己写界面,在button的单击事件中添加如下代码即可: Intent intent = new Intent(); intent.setAction("android.intent.action.CALL"); intent.setData(Uri.parse("tel:"+ .....
分类:移动开发   时间:2014-05-22 16:41:15    阅读次数:473
调用录音界播放音频文件
/* 播放录音文件 */private void playMusic(File file){Intent intent = new Intent();intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);intent.setAction(android.con...
分类:其他好文   时间:2014-05-22 15:18:27    阅读次数:269
调取系统相机、并将图片展示在ImageView上
package com.ting.textcover;import java.io.File;import android.app.Activity;import android.content.Intent;import android.graphics.Bitmap;import android...
分类:其他好文   时间:2014-05-22 14:30:14    阅读次数:321
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!