最近感觉这个添加快捷方式挺有趣的,就查资料自己写了个demo---简单的例子,这个例子就是有两个按钮,点击“将此程序添加到快捷方式”,则手机桌面增加一个快捷方式,同时launcher中也多了一个快捷方式,点击退出,则提示:toast弹提示信息“退出程序”。知识梳理:Android平台上添加快捷方式有两种:一种桌面的快捷方式,一种是launcher的快捷方式。原理:是通过intent封装一些信息,以Broadcast的形式通知launcher创建快捷方式的!一定不要忘记在manifest.xml中注册一下权限

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

在manifest.xml中加入一个动作过滤的intentFilter,快捷方式的列表中会多个该程序的快捷方式。

有问题或向说点什么的可以留言,欢迎大家批评和指正,转载请标明出处:

下面看一下程序的截图:

程序的开始界面:点击“将此程序添加快捷方式”按钮:

点击退出按钮,桌面多了快捷方式,弹Toast:点出选择快捷方式后多了程序的快捷方式:

在IntentWidget工程中:

一、在com.cn.daming包中IntentWidgetMainActivity.java中的代码:

 package com.cn.daming;import android.app.Activity;import android.content.Intent;import android.os.Bundle;import android.os.Parcelable;import android.view.View;import android.view.View.OnClickListener;import android.widget.Button;import android.widget.Toast;public class IntentWidgetMainActivity extends Activity implements OnClickListener{private Button mStartWidgetButton;private Button mExitButton;@Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        mStartWidgetButton = (Button) findViewById(R.id.my_button_1);        mExitButton = (Button) findViewById(R.id.my_button_2);        mStartWidgetButton.setOnClickListener(this);        mExitButton.setOnClickListener(this);    }public void onClick(View v){if(v == mStartWidgetButton){//inint the widgetIntent is declearIntent addWidgetIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");                     //whether repeat create is or not                      addWdgetIntent.putExtra("duplicate",true); //set the Widget of the titleString mTitle = getResources().getString(R.string.my_title);//set the Widget of the iconParcelable icon = Intent.ShortcutIconResource.fromContext(this, R.drawable.widget_image);Intent mIntent = new Intent(this,IntentWidgetMainActivity.class);addWidgetIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, mTitle);//set the titleaddWidgetIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);//set the iconaddWidgetIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, mIntent);//set the intentsendBroadcast(addWidgetIntent);}else if(v == mExitButton){finish();Toast.makeText(IntentWidgetMainActivity.this, R.string.exit, Toast.LENGTH_SHORT).show();}}}

二、在layout目录下的main.xml中的代码:

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:orientation="vertical"    android:layout_width="fill_parent"    android:layout_height="fill_parent"    android:background="#00ffffff"    ><TextView      android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:layout_marginTop="15dip"    android:layout_marginBottom="15dip"    android:gravity="center"    android:text="@string/hello"    android:textSize="8pt"    /><Button    android:id="@+id/my_button_1"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:layout_marginBottom="10dip"    android:textSize="10pt"    android:text="@string/my_button_1"/><Button    android:id="@+id/my_button_2"    android:layout_width="fill_parent"    android:layout_height="wrap_content"    android:layout_marginBottom="10dip"    android:textSize="10pt"    android:text="@string/my_button_2"/><TextView      android:layout_width="fill_parent"     android:layout_height="wrap_content"     android:layout_marginBottom="15dip"    android:gravity="center"    android:text="@string/blogs"    android:textSize="8pt"    /></LinearLayout>

三、在values下的string.xml中的代码:

<?xml version="1.0" encoding="utf-8"?><resources>    <string name="hello">这是大明添加到Launcher的快捷方式</string>    <string name="app_name">大明快捷方式!</string>    <string name="my_button_1">将此程序添加快捷方式</string>    <string name="my_button_2">退出程序</string>    <string name="my_title">大明程序</string>    <string name="exit">程序正在退出。。。。。。</string>    <string name="blogs">博客地址:\n http://blog.csdn.net/wdaming1986/article/details/6877154</string></resources>

四、manifest.xml中的代码

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android"      package="com.cn.daming"      android:versionCode="1"      android:versionName="1.0">    <uses-sdk android:minSdkVersion="8" />    <application android:icon="@drawable/icon" android:label="@string/app_name">        <activity android:name=".IntentWidgetMainActivity"                  android:label="@string/app_name">            <intent-filter>                <action android:name="android.intent.action.MAIN" />                <category android:name="android.intent.category.LAUNCHER" />            </intent-filter>            <!-- add the launch of my programmer`s quick launcher-->            <intent-filter>                <action android:name="android.intent.action.CREATE_SHORTCUT"/>            </intent-filter>        </activity>    </application>    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/></manifest>


更多相关文章

  1. 能够删除的安卓(Android)系统自带程序详细列表
  2. android碎片Fragment简介详解
  3. 关于Android全埋点方案
  4. 第三部分:Android(安卓)应用程序接口指南---第二节:UI---第九章 搜
  5. android 修改ramdisk.img和init.rc && android启动后设置/d
  6. Android多版本兼容示例
  7. Android放置图片的三个文件夹
  8. Android(安卓)Fragment 详解
  9. Android应用程序插件化研究之DexClassLoader

随机推荐

  1. Android界面编程——Android基本控件
  2. 使用android SDk帮助文档(英文) 下载中文
  3. 2014非常好用的开源Android测试工具
  4. Android Studio下的目录结构
  5. Android(安卓)IT资讯网络阅读器应用源码
  6. android ImageButton示例
  7. android(NDK+JNI)---Android使用JNI实现J
  8. Android属性动画使用浅析
  9. Android开发学习之基本控件概览
  10. Android Studio 第六十四期 - Android业