我用HTC的手机。我的手机锁屏可以显示添加在我的主屏幕底部栏中的图标。该栏允许我添加应用程序和快捷方式。如果我输入密码来解锁我的手机,我花了 10 秒。所以我有一个想法:
我编写了一个应用程序来创建一个快捷方式,该快捷方式可以广播到记录应用程序以开始记录。
{
Intent shortCutContain =new Intent("example.app.REC");
shortCutContain.setClassName("example.app", "example.app.AudioService");
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,shortCutContain);
}
这就是我所做的......但它失败了
请帮我