虽然它是从 App 小部件部分添加的,但它甚至与appwidgetprovider
. 如果您尝试创建应用小部件,那么您就走错了路。
我从现有项目中获取了一些代码,希望这会有所帮助:)
1.向AndroidManifest.xml添加所需的权限
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
2.添加 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.现在您可以对您想要的活动进行以下修改,以调用创建快捷方式的代码(该活动显示了许多用于创建不同快捷方式的选项):
@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, "ID_0", MainActivity.class, "App Settings", R.mipmap.ic_launcher);
finish();
}
注意:对于Android Nougat(7.1)下的设备,该快捷方式尝试打开的目标activity必须至少包含一个intent-filter标签(可以是任意的,考虑<category android:name="android.intent.category.DEFAULT"/>
为隐藏的activity添加),否则快捷方式可能会显示“app is not安装”。