首先看一下Intent的官方的API,传递一些基本类型数据的方法如下:
putExtra(String name, int value)
putExtra(String name, String value)
putExtra(String name, float value)
putExtra(String name, double value)
putExtra(String name, lon...
分类:
移动开发 时间:
2015-07-27 18:50:17
阅读次数:
149
但改变分辨率时,发送广播即可: Intent intent_outputmode_change = new Intent(ACTION_OUTPUTMODE_CHANGE); intent_outputmode_change.putExtra(OUTPUT_MODE, outputmode_entr...
分类:
移动开发 时间:
2015-07-27 10:38:46
阅读次数:
423
1.静态注册。在manifest中注册。1 然后在activity中使用sendBroadcast(Intent)方法。其中参数是Intent.1 Intent intent=new Intent(this,MyReceiver.class);2 intent.putExtra("data", "e...
分类:
移动开发 时间:
2015-07-12 00:02:46
阅读次数:
375
一丶照相机的应用创建意图对象启动拍照Intentintent=newIntent();//设置动作intent.setAction(MediaStore.Action_p_w_picpath_capture);//设置图片保存的路径Filefile=newFile(Environment.getExternalStorageDirectory()+"/haha.png");//设置照片的名字intent.putExtra(MediaS..
分类:
移动开发 时间:
2015-07-09 22:48:32
阅读次数:
172
intent传值传对象跳转
1.传值
//原activity中存入一个字段
intent = new Intent(From.this, To.class);
intent.putExtra("switch", "chongzhi");
startActivity(intent);
//跳转至新的activity中后q取出该字段
Intent switchIntent = getIn...
分类:
其他好文 时间:
2015-07-09 18:06:22
阅读次数:
193
1:Activity篇1.1向Activity传值比如First要给Second传递参数,我们可以这样写,关键点在于putExtra。如果传递类的话,记得类实现Serializable接口Intent intent = new Intent(FirstActivity.this, SecondAct...
分类:
移动开发 时间:
2015-07-06 19:33:55
阅读次数:
144
发送有序广播方式:
Intent intent=new Intent();
intent.setAction("com.song.lu");
intent.putExtra("msg","简单的消息");
sendOrderedBroadcast(intent,null);
有序广播配置说明:
android:pri...
分类:
其他好文 时间:
2015-06-14 16:50:07
阅读次数:
171
Android APP拨打电话:
Intent intent=new Intent(Intent.ACTION_DIAL,Uri.parse("tel:"+888888));
startActivity(intent);
}
Android APP短信分享:
Intent sendIntent = new Intent(Intent.ACTION_VIEW);
sendIntent.putExtra("sms_body", "#短信分享#");
sendIntent.setType("vnd.andro...
分类:
移动开发 时间:
2015-06-03 17:42:49
阅读次数:
175
android 系统的分享功能
private void share(String content, Uri uri){
Intent shareIntent = new Intent(Intent.ACTION_SEND);
if(uri!=null){
//uri 是图片的地址
shareIntent.putExtra(Intent.EXTRA_S...
分类:
移动开发 时间:
2015-06-03 13:48:45
阅读次数:
214
APP必备小功能,代码很简单,1 Intent intent=new Intent(Intent.ACTION_SEND); 2 intent.setType("text/plain"); //"image/*"3 intent.putExtra(In...
分类:
移动开发 时间:
2015-06-02 19:27:11
阅读次数:
111