创建桌面组件之快捷方式的创建

package com.example.tyxiong.myapplication;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;

/*
*
* Android手机桌面组件:2种组件
*   1 快捷方式,占一个摆放位置 快速启动应用
*   2 桌面控件,可占多个摆放位置,直接运行在桌面上的小程序.
*
*   手机壁纸开发api WallpaperManager Live Wallpapers(开发动态壁纸)
*
*   通过程序向桌面添加快捷方式:3步
*       1 创建一个Intent(用于添加快捷方式),指定Action属性为INSTALL_SHORTCUT
*       2 通过为Intent指定Extra属性(接受Bundle对象),为快捷方式设置icon,title,要启动的程序
*       3 调用context方法sendBroadcast()发送广播即可.
*       还有权限呢....    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />


* */


public class MainActivity extends Activity {

    Intent intent;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        initIntent();

    }

    private void initIntent() {
        intent = new Intent();
        intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
        Intent.ShortcutIconResource icon = Intent.ShortcutIconResource.fromContext(this, R.mipmap.ic_launcher);
        intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
        intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "shortcut");
        intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(this, MainActivity.class));
    }

    public void send(View view) {
        sendBroadcast(intent);
    }
}





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

秋葵好吃吗

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值