gpt4 book ai didi

android - 如何从 Android 小部件创建快捷方式?

转载 作者:行者123 更新时间:2023-12-04 09:11:20 26 4
gpt4 key购买 nike

我正在尝试向我的应用程序添加一个新的小部件功能,它允许您从“快捷方式小部件”创建固定的快捷方式。
通常在 Android 中创建快捷方式如下面的视频所示。您长按应用程序,选择一个快捷方式,然后您可以将快捷方式固定到主屏幕上。我的应用目前按照 Android 开发者指南实现了这样的快捷方式。

但是,我注意到设置应用程序允许您为您的应用程序创建更多快捷方式,允许通过设置小部件创建快捷方式,如下面的视频所示。

我想让我的应用程序的用户能够为我的应用程序中的许多功能创建快捷方式,但是,大多数启动器只能通过长按显示四个快捷方式。
有谁知道如何实现允许您创建许多快捷方式的应用程序小部件,例如已实现的设置应用程序?

最佳答案

虽然它是从 App 小部件部分添加的,但它甚至与 appwidgetprovider 无关。 . 如果您正在尝试创建应用小部件,那么您就走错了路。
我从我现有的项目中抓取了一些代码,希望这会有所帮助:)
1.添加所需权限到 AndroidManifest.xml

    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
2.添加 Intent 过滤器 <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>
添加这些行后, 当用户将 Activity 从小部件部分拖到主页时,将打开所需的 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
}
或者您也可以创建一个新的空白 Activity 来创建“单个”
快捷方式,无需调用 setContentView() , 如果你只需要
创建一个快捷方式:
        @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
vCreateShortcutByActivityClass(this, "ID_0", MainActivity.class, "App Settings", R.mipmap.ic_launcher);
finish();
}

注意:对于Android Nougat(7.1)下的设备,快捷方式尝试打开的目标 Activity 必须至少包含一个 Intent 过滤器 标签(可以是任何,考虑为隐藏 Activity 添加 <category android:name="android.intent.category.DEFAULT"/>),否则快捷方式可能会显示“应用程序未安装”。

关于android - 如何从 Android 小部件创建快捷方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63346757/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com