Android中程序向桌面和Launcher添加快捷方式【安卓进化三十二】
最近感觉这个添加快捷方式挺有趣的,就查资料自己写了个demo---简单的例子,这个例子就是有两个按钮,点击“将此程序添加到快捷方式”,则手机桌面增加一个快捷方式,同时launcher中也多了一个快捷方式,点击退出,则提示:toast弹提示信息“退出程序”。知识梳理:Android平台上添加快捷方式有两种:一种桌面的快捷方式,一种是launcher的快捷方式。原理:是通过intent封装一些信息,以Broadcast的形式通知launcher创建快捷方式的!一定不要忘记在manifest.xml中注册一下权限:
在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;@Overridepublic 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中的代码:
三、在values下的string.xml中的代码:
这是大明添加到Launcher的快捷方式 大明快捷方式! 将此程序添加快捷方式 退出程序 大明程序 程序正在退出。。。。。。 博客地址:\n http://blog.csdn.net/wdaming1986/article/details/6877154
四、manifest.xml 中的代码
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
