安卓创建快捷方式相关问题 Intent Intent-filter


Intent

在安卓中,Activity启动时通常需要Intent参数。Intent参数中包含以下几个常用的属性:

Component,指定了要启动的Activity,以及启动的context,使用Intent.setClass或Intent.setComponent方法可以设置

Action属性,可用Intent.setAction方法设置;
Category属性,可用Intent.addCategory方法添加,Action和Category属性一般用于做过滤;

Extra属性,用于传入一些参数,可通过Intent.putExtra方法添加。在Activity被启动后可以通过getIntent.getExtra获取Extra参数。

Manifest

安卓Activity有一个intent-filter属性,用于过滤启动启动此Activity所使用的Intent,不满足条件的Intent无法启动这个Activity,也就是Intent的Action和Category属性了。

最常见的用法,就是主启动Activity一般这么写:
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>  

给Activity设置intent-filter.action属性,则该Activity可以作为应用程序入口,被其他程序调用(比如Launcher启动器)。可以有多个action,只要Intent具有其中的一个action就可以启动Activity。如:
<action android:name="voice" />
<action android:name="android.intent.action.MAIN" />

在Activity的intent-filter.category属性中添加LAUNCHER值,则此Activity可以出现在Launcher中,也就是手机应用程序主菜单中。
<category android:name="android.intent.category.LAUNCHER" />

如果设置了action但没有对category属性添加LAUNCHER,会出现下述警告,表明Activity暴漏在外面,可被外部的非Launcher程序调用,可能会有安全性问题。
Exported activity does not require permission

此时设置android:exported="false"则警告会消失。这是,这个Activity只能在本应用内部被调用。因此,指向具有这一属性的Activity的快捷方式被点击时,Launcher无法调用Activity,于是会显示应用程序不存在。
android:exported="false"  

同一个App可以有多个Activity具有action.MAIN属性,Launcher会自动选择一个作为程序入口。

        <!-- 欢迎界面 -->
        <activity
            android:name=".ui.ActivityWelcome"
            android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!-- 主界面 -->
        <activity android:name=".ui.ActivityMain" >
            <intent-filter>
                <action android:name="MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

代码添加快捷方式的方法

    /**
     * 创建快捷方式
     * <p>
     * 需要权限
     * <p>
     * <uses-permission
     * android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
     * <p>
     * 
     * @param context
     *            Context
     * @param intent
     *            要启动的Intent
     * @param name
     *            快捷方式名
     * @param icon
     *            快捷方式图标
     */
    public static final void addShortcut(Context context, Intent intent,
            String nameint icon) {
        ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(
                contexticon);
        Intent sc = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
        sc.putExtra(Intent.EXTRA_SHORTCUT_NAMEname); // 快捷方式名
        sc.putExtra("duplicate"false); // 不允许重复创建
        sc.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCEiconRes); // 快捷方式图标
        sc.putExtra(Intent.EXTRA_SHORTCUT_INTENTintent); // 启动Intent
        context.sendBroadcast(sc);
    }  
    public static final void addShortcut(Context context, Intent intent,
            int nameint icon) {
        addShortcut(contextintentcontext.getString(name), icon);
    } 
 
通过给Intent设置不同的Component、Action等,即可从Launcher启动相应Activity,并可传入Extra参数,这样可以实现一些诸如一键截屏,快捷启动之类的功能。

    Intent intent = new Intent(Intent.ACTION_MAIN);
    intent.setClass(this, ActivityWelcome.class);
    addShortcut(thisintent, R.string.app_nameR.drawable.ic_launcher);

    Intent intent1 = new Intent("MAIN");
    intent1.setClass(thisthis.getClass());
    addShortcut(thisintent1, R.string.app_nameR.drawable.ic_launcher);


本文由PurpleSword(jzj1993)原创,转载请注明
原文网址 http://blog.csdn.net/jzj1993

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/242165.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

安卓动画知识总结 Animation AnimationSet LayoutAnimation

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993常见动画有几种控件View的动画(如Dialog窗口中的圆形进度条)空间Window的动画(如DialogWindow&#xff0c;PopupWindow的动画&#xff0c;Activity切换时整个Window页面的动画)View…

Activity和Service通信 Bind方式

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993在Service中自定义Binder类&#xff0c;实现方法getService&#xff1b;覆写Service的onBind方法public class MainService extends Service {Overridepublic void onCreate() {sup…

语义分析 文本矛盾点解析_关于解析文本的几点思考

语义分析 文本矛盾点解析Yesterday I wrote about three course modules in Oslo, and the fact that most of the presentation material is online. Today I will be writing about one lesson in the curriculum about ‘Parsing’. First I will share a few general thoug…

专家建议用南方的养老金拿去救济东北,网友炸锅了

随着我国老龄化的不断加剧&#xff0c;养老资金已经成为了社会要面临的一个艰巨问题&#xff0c;特别是在东北地区&#xff0c;这些年来东北地区经济发展比较缓慢&#xff0c;导致养老资金收入也跟着放慢&#xff0c;目前有的省份养老基金结余已经为负数&#xff0c;这对于如何…

安卓屏幕尺寸相关知识

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj19931.px Pixels,像素值2.dp dip device independent pixel,设备独立像素(安卓专用虚拟像素单位)3.density,屏幕密度(1)近似换算关系 px dip*density, dip px/density(2)相同像素值…

明明知道银行存款会贬值,为什么还有那么多人把钱放在银行?

钱存在银行肯定是贬值的&#xff0c;但是对于那些风险意识比较低&#xff0c;或者从风险承受能力比较低的人来说&#xff0c;你除了存在银行&#xff0c;还有别的更好选择吗&#xff1f;没有&#xff01;银行存款利率基本上跑不赢通货膨胀。最近几年&#xff0c;我国货币量的不…

pandas 机器学习_机器学习的PANDAS

pandas 机器学习Pandas is one of the tools in Machine Learning which is used for data cleaning and analysis. It has features which are used for exploring, cleaning, transforming and visualizing from data.Pandas是机器学习中用于数据清理和分析的工具之一。 它具…

家族信托是什么东东?为何受到富豪们的大力吹捧?

说到信托相信很多人都知道是怎么回事&#xff0c;但是说到家族信托就未必有人知道是啥回事了。不过大家对于家族信托不了解&#xff0c;并不妨碍家族信托的迅猛发展&#xff0c;最近几年家族信托这个概念在富豪圈已经成为了一个热门的话题&#xff0c;很多有钱的人都在尝试搞家…

安卓SlidingDrawer

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993Layout<RelativeLayout xmlns:android"http://schemas.android.com/apk/res/android"android:layout_width"match_parent"android:layout_height"wrap…

鸭子目标检测数据集VOC格式300张

鸭子是一种较为常见的水禽&#xff0c;属于鸟纲鸭科动物&#xff0c;是人们生活中的常见动物之一。鸭子的外形特征独特&#xff0c;身体小巧灵活&#xff0c;身长约30-40厘米左右&#xff0c;体重在1-2千克左右。鸭子的嘴宽大而扁平&#xff0c;呈圆形&#xff0c;嘴边有着细小…

为什么支付宝不提供房贷业务?原因在这里

大家都知道房贷是银行的一块肥肉&#xff0c;也是银行利润最丰厚最稳定的一部分&#xff0c;目前房贷业务占到银行整体业务基本上都是在30%以上&#xff0c;有部分银行甚至达到50%以上。尽管房贷业务和很肥&#xff0c;但是并不是所有银行都会开展房贷业务&#xff0c;比如蚂蚁…

文本摘要提取_了解自动文本摘要-1:提取方法

文本摘要提取Text summarization is commonly used by several websites and applications to create news feed and article summaries. It has become very essential for us due to our busy schedules. We prefer short summaries with all the important points over read…

安卓json的解析

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993方法一&#xff08;使用安卓包含的JSON解析类&#xff09;import org.json.JSONArray;import org.json.JSONObject;import org.json.JSONTokener;try {JSONTokener tokener new JS…

安卓线程相关 HandlerThread Handler Thread Looper Message Runnable

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993安卓主线程&#xff08;UI线程&#xff09;是线程不安全的&#xff1a;对UI控件的操作都应在主线程中完成&#xff1b;UI线程不应执行耗时操作&#xff0c;以免程序不响应&#xff…

用户细分_基于购买历史的用户细分

用户细分介绍 (Introduction) The goal of this analysis was to identify different user groups based on the deals they have availed, using a discount app, in order to re-target them with offers similar to ones they have availed in the past.该分析的目的是使用折…

一个字节的网络漫游故事独白

大家好&#xff0c;给大家介绍一下&#xff0c;我是一个字节。相比于你们人类据说即将达到的百岁人生的寿命&#xff0c;我的一生简直不直一提&#xff08;我只能存活零点几个毫秒&#xff09;。也许只有那些码农才会了解我&#xff0c;而且也只有一部分码农。那些整天做业务的…

swap最大值和平均值_SWAP:Softmax加权平均池

swap最大值和平均值Blake Elias is a Researcher at the New England Complex Systems Institute.Shawn Jain is an AI Resident at Microsoft Research.布莱克埃里亚斯 ( Blake Elias) 是 新英格兰复杂系统研究所的研究员。 Shawn Jain 是 Microsoft Research 的 AI驻地 。 …

Activity和Service通信 使用BroadcastReceiver

本文由PurpleSword(jzj1993)原创&#xff0c;转载请注明原文网址 http://blog.csdn.net/jzj1993Activity中编写/*** 广播接收器*/public class MsgReceiver extends BroadcastReceiver {Overridepublic void onReceive(Context context, Intent intent) {Log.v("", &…

该酷的酷该飒的飒,穿出自己的潮流前线

精选匈牙利白鸭绒填充&#xff0c;柔软蓬松 舒适感很强&#xff0c;回弹性好 没有什么异味很干净安全 宝贝穿上去保暖又舒适 树脂拉链&#xff0b;金属按扣&#xff0c;松紧帽檐&#xff0b;袖口 下摆还做了可调节抽绳&#xff0c;细节满满防风保暖很nice 短款设计相较于…

pytorch卷积可视化_使用Pytorch可视化卷积神经网络

pytorch卷积可视化Filter and Feature map Image by the author筛选和特征图作者提供的图像 When dealing with image’s and image data, CNN are the go-to architectures. Convolutional neural networks have proved to provide many state-of-the-art solutions in deep l…