Android创建桌面快捷方式并像启动Activity传递参数

来源:互联网 发布:万国数据上海 福利待遇 编辑:程序博客网 时间:2024/06/05 21:16

转载:http://blog.csdn.net/attmore/article/details/7244030


创建快捷方式可能非常简单,但是我们现在要想实现快捷方式像启动的Acitivty传递参数。

直接上代码了,注释的非常详细。



  1. /** 
  2.  * 为程序创建桌面快捷方式 
  3.  * 带参数 
  4.  */  
  5. private void addShortcut(){  
  6.     Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");  
  7.           
  8.     //快捷方式的名称  
  9.     shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));  
  10.     shortcut.putExtra("duplicate"false); //不允许重复创建  
  11.           
  12.     //指定当前的Activity为快捷方式启动的对象: 如 com.everest.video.VideoPlayer  
  13.     //注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序  
  14.     ComponentName comp = new ComponentName(this.getPackageName(), "."+this.getLocalClassName());  
  15.     shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));  
  16.   
  17.     //快捷方式的图标  
  18.     ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.ic_launcher);  
  19.     shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes);  
  20.     //添加要做的事情  
  21.     Intent todo = new Intent(Intent.ACTION_CALL,Uri.parse("tel:10000"));  
  22.     shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, todo);   
  23.     sendBroadcast(shortcut);  
  24. }  

  1. Intent todo = new Intent(Intent.ACTION_CALL,Uri.parse("tel:10000"));  
通过todo可以这个Intent,我们可以传递更多的参数。

这里用拨打10000举例,纯属抛砖引玉了。