欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

Android如何创建桌面快捷方式

程序员文章站 2024-03-05 17:48:37
android创建桌面的快捷方式 概述 :创建桌面快捷方式相当与创建一个程序的入口,就像我们程序在安装完毕后会自动创建一个图标到桌面。其实创建桌面快捷方式跟创建一个程序...

android创建桌面的快捷方式
概述 :创建桌面快捷方式相当与创建一个程序的入口,就像我们程序在安装完毕后会自动创建一个图标到桌面。其实创建桌面快捷方式跟创建一个程序入口差不多,但是像qq会话一样创建一个qq好友的会话快捷方式,就得动态的创建图标,名字了。

1.首先权限是必不可少的

<uses-permission android:name="com.android.launcher.permission.install_shortcut" />

2.然后就是在你项目配置文件里面配置

 <activity
      android:name="com.easemob.chatuidemo.activity.chatactivity" >
      <intent-filter>
        <category android:name="android.intent.category.launcher" />
        <action android:name="android.intent.action.create_shortcut" />
      </intent-filter>
  </activity>

这个actvity即为你要快捷方式点击后跳转的那一个activity

3.然后就是你要创建快捷方式的方法。

代码如下:

 public void createshotcut(final context context, final class<?> clazz,
      final string name, final string image) {

    intent shortcutintent = new intent(intent.action_main);
    // 加入action,和category之后,程序卸载的时候才会主动将该快捷方式也卸载
    shortcutintent.addcategory(intent.category_launcher);
    shortcutintent.setclass(context, clazz);
    /**
     * 创建一个bundle对象让其保存将要传递的值
     */
    bundle bundle = new bundle();
    bundle.putstring("userid", userid);
    shortcutintent.putextras(bundle);
    /**
     * 设置这条属性,可以使点击快捷方式后关闭其他的任务栈的其他activity,然后创建指定的acticity
     */
    shortcutintent.setflags(intent.flag_activity_clear_top);

    // 创建快捷方式的intent
    intent shortcut = new intent(intent.action_create_shortcut);
    // 不允许重复创建
    shortcut.putextra("duplicate", false);
    // 点击快捷图片,运行的程序主入口
    shortcut.putextra(intent.extra_shortcut_intent, shortcutintent);
    // 需要现实的名称
    shortcut.putextra(intent.extra_shortcut_name, name);

    // 快捷图片
    parcelable icon = intent.shortcuticonresource.fromcontext(
        getapplicationcontext(), r.drawable.ic_launcher);
    shortcut.putextra(intent.extra_shortcut_icon_resource, icon);
    shortcut.setaction("com.android.launcher.action.install_shortcut");
    context.sendbroadcast(shortcut);
  }

这行代码的重要性就在如果没有这一行,那么在你点击这个快捷方式,跳转的时候就会直接跳到这个应用的栈顶(如果指定的activity在栈顶,也不会跳转其上而是销毁)而不是指定的那一个activity(刚开始没加这条属性的时候,一直跳转不到指定的activity上)。

shortcutintent.setflags(intent.flag_activity_clear_top);

如果想要动态的添加图片即创建快捷方式的时候获取网路上的图片来进行设置其快捷图片则使用

 // intent.extra_shortcut_icon 是bitmap对象
    shortcut.putextra(intent.extra_shortcut_icon,bitmap);

这行代码,你可以请求网路图片后转换为bitmap后设置进去。

ok动态的创建快捷方式就这样完成了。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。