现在我做了一个android应用程序,apk文件安装后桌面上没有图标,怎样用代码实现使程序在安装的时候生成一个快捷方式呢??

解决方案 »

  1.   

    ///////////////////////////////////////////////////桌面快捷方式/////////////////////////////////////////private void addShortcut(){Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");//快捷方式的名称shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));shortcut.putExtra("duplicate", false); //不允许重复创建//指定当前的Activity为快捷方式启动的对象: 如 //com.everest.video.VideoPlayer//注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序ComponentName comp = new ComponentName(this.getPackageName(), "."+this.getLocalClassName());shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));//快捷方式的图标ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(this, R.drawable.icon);shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes);sendBroadcast(shortcut);}/*** 删除程序的快捷方式*/private void delShortcut(){Intent shortcut = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT");//快捷方式的名称shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, getString(R.string.app_name));//指定当前的Activity为快捷方式启动的对象: 如 //com.everest.video.VideoPlayer//注意: ComponentName的第二个参数必须是完整的类名(包名+类名),否则无法删除快捷方式String appClass = this.getPackageName() + "." +this.getLocalClassName();ComponentName comp = new ComponentName(this.getPackageName(), appClass);shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));sendBroadcast(shortcut);} 
      

  2.   

    http://blog.csdn.net/dadahacker/archive/2010/07/08/5721461.aspx
      

  3.   

     1, 在你项目中的drawable-mdpi目录中加入一个48×48的图片;比如:title.png
     2,在AndroidManifest.xml文件中的加入或更新application android:icon="@drawable/title"
     3,运行项目,你想要的效果就有了,同样,打包apk安装也是一样
      

  4.   

    你用代码是搞不定的,android的桌面系统也很庞大,你的程序是不是没有icon啊,有的话,会自动加载到桌面的