如何从Android窗口小部件创建快捷方式?

如何解决如何从Android窗口小部件创建快捷方式?

我正在尝试向我的应用程序添加新的小部件功能,以允许您从“快捷方式小部件”中创建固定的快捷方式。

通常在Android中创建快捷方式的方式类似于以下视频。长按该应用程序,选择一个快捷方式,然后可以将该快捷方式固定在主屏幕上。我的应用当前遵循Android开发人员指南实施了此类快捷方式。

但是,我注意到“设置”应用程序允许您通过“设置”小部件创建快捷方式,从而为您的应用程序创建更多快捷方式。

我想让我的应用程序用户能够为我的应用程序中的许多功能创建快捷方式,但是,大多数启动器从长按中只能显示四个快捷方式。

有人知道如何实现允许您创建许多快捷方式(例如“设置”应用已实现)的应用小部件吗?

解决方法

尽管它是从应用小部件部分添加的,但它甚至与 appwidgetprovider 无关。 如果您正在尝试创建应用小部件,那么您就走错了路。

我从我现有的项目中抓取了一些代码,希望这会有所帮助:)

1.向AndroidManifest.xml

添加所需的权限
    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>

2.add intent-filter <action android:name="android.intent.action.CREATE_SHORTCUT"/> ,这样你的 AndroidManifest.xml 应该是这样的:

    <activity
        android:name=".ui.SetupWizardActivity"
        android:label="@string/create_shortcut_label">
        <intent-filter>
            <action android:name="android.intent.action.CREATE_SHORTCUT"/>
        </intent-filter>
    </activity> 

添加这些行后,当用户将活动从小部件部分拖到主页时,将打开所需的活动。

3.这是用于创建快捷方式的代码:

import android.content.Context;
import android.content.Intent;
import android.widget.Toast;

import androidx.annotation.DrawableRes;
import androidx.core.content.pm.ShortcutInfoCompat;
import androidx.core.content.pm.ShortcutManagerCompat;
import androidx.core.graphics.drawable.IconCompat;

public class ShortcutCreator {

    public static void vCreateShortcutByActivityClass(Context context,String strShortcutID,Class<?> ActivityClass,String strLabelName,@DrawableRes int resourceID){

        if (ShortcutManagerCompat.isRequestPinShortcutSupported(context)){
            Intent intent = new Intent(context,ActivityClass).setAction(Intent.ACTION_MAIN);
            ShortcutInfoCompat sic =
                    new ShortcutInfoCompat.Builder(context,strShortcutID).setIntent(intent).setShortLabel(strLabelName).setIcon(IconCompat.createWithResource(context,resourceID)).build();
            ShortcutManagerCompat.requestPinShortcut(context,sic,null);

        }else{

            Toast.makeText(context,"Device doesn't support creating shortcuts.",Toast.LENGTH_SHORT).show();

        }
    }

}

注意:ShortcutID 用于确定是否存在重复的快捷方式。

4.现在你可以对你想要的activity做如下修改来调用创建快捷方式的代码(显示的activity) 许多用于创建不同快捷方式的选项):

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
    
            final String strIntentAction = getIntent().getAction();
            if (TextUtils.equals(strIntentAction,Intent.ACTION_CREATE_SHORTCUT)) {
                setContentView(R.layout.activity_shortcut);
                //display selections here and let user choose shortcut
                //...deleted
                vCreateShortcutByActivityClass(this,"ID_0",SetupWizardActivity.class,"App Settings",R.mipmap.ic_launcher);
                finish();
                return;
            }
            
            setContentView(R.layout.activity_main);
            //codes of your activity opened from launcher
            //...deleted
        }

或者你也可以创建一个新的空白活动来创建一个“单个” 快捷方式,无需调用 setContentView(),如果您只需要 创建一个快捷方式:

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            vCreateShortcutByActivityClass(this,MainActivity.class,R.mipmap.ic_launcher);
            finish();
        }

注意:对于 Android Nougat(7.1) 下的设备,快捷方式尝试打开的目标 Activity 必须至少包含一个 intent-filter 标签(可以是任意的,可以考虑添加 {{1} } 隐藏活动),否则快捷方式可能会显示“应用程序未安装”。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


依赖报错 idea导入项目后依赖报错,解决方案:https://blog.csdn.net/weixin_42420249/article/details/81191861 依赖版本报错:更换其他版本 无法下载依赖可参考:https://blog.csdn.net/weixin_42628809/a
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下 2021-12-03 13:33:33.927 ERROR 7228 [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPL
错误1:gradle项目控制台输出为乱码 # 解决方案:https://blog.csdn.net/weixin_43501566/article/details/112482302 # 在gradle-wrapper.properties 添加以下内容 org.gradle.jvmargs=-Df
错误还原:在查询的过程中,传入的workType为0时,该条件不起作用 &lt;select id=&quot;xxx&quot;&gt; SELECT di.id, di.name, di.work_type, di.updated... &lt;where&gt; &lt;if test=&qu
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct redisServer’没有名为‘server_cpulist’的成员 redisSetCpuAffinity(server.server_cpulist); ^ server.c: 在函数‘hasActiveC
解决方案1 1、改项目中.idea/workspace.xml配置文件,增加dynamic.classpath参数 2、搜索PropertiesComponent,添加如下 &lt;property name=&quot;dynamic.classpath&quot; value=&quot;tru
删除根组件app.vue中的默认代码后报错:Module Error (from ./node_modules/eslint-loader/index.js): 解决方案:关闭ESlint代码检测,在项目根目录创建vue.config.js,在文件中添加 module.exports = { lin
查看spark默认的python版本 [root@master day27]# pyspark /home/software/spark-2.3.4-bin-hadoop2.7/conf/spark-env.sh: line 2: /usr/local/hadoop/bin/hadoop: No s
使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-