19

我制作的时钟小部件遇到问题。我希望用户触摸时钟并在手机上启动时钟应用程序。这是代码:

//this worked on my nexus 2.1 
if(VERSION.SDK.equals("7")){
            RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);

            Intent AlarmClockIntent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_LAUNCHER).setComponent(new ComponentName("com.android.deskclock", "com.android.deskclock.DeskClock"));
            PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, AlarmClockIntent, 0);
            views.setOnClickPendingIntent(R.id.Widget, pendingIntent);

            AppWidgetManager.getInstance(context).updateAppWidget(intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS), views);

        }
  //this worked on my nexus +froyo2.2           
  else if(VERSION.SDK.equals("8")){
            RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);

            Intent AlarmClockIntent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_LAUNCHER).setComponent(new ComponentName("com.google.android.deskclock", "com.android.deskclock.DeskClock"));
            PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, AlarmClockIntent, 0);
            views.setOnClickPendingIntent(R.id.Widget, pendingIntent);

            AppWidgetManager.getInstance(context).updateAppWidget(intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS), views);

        }
 //this worked on my htc magic with 1.5 and 1.6
        else{
            RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);

            Intent AlarmClockIntent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_LAUNCHER).setComponent(new ComponentName("com.android.alarmclock", "com.android.alarmclock.AlarmClock"));
            PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, AlarmClockIntent, 0);
            views.setOnClickPendingIntent(R.id.Widget, pendingIntent);

            AppWidgetManager.getInstance(context).updateAppWidget(intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS), views);
        }

我做了上面的操作,所以当我触摸时钟时会打开闹钟设置。但不是通用的。我发现在 2.2 的机器人上不起作用。必须有比为世界上每一种安卓手机风格创建一个 if 语句更好的解决方案。另外,我不知道所有人的包裹名称。任何人都知道如何克服这一点,请帮助。

4

8 回答 8

42

此代码适用于我的时钟小部件。

PackageManager packageManager = context.getPackageManager();
Intent alarmClockIntent = new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_LAUNCHER);

// Verify clock implementation
String clockImpls[][] = {
        {"HTC Alarm Clock", "com.htc.android.worldclock", "com.htc.android.worldclock.WorldClockTabControl" },
        {"Standar Alarm Clock", "com.android.deskclock", "com.android.deskclock.AlarmClock"},
        {"Froyo Nexus Alarm Clock", "com.google.android.deskclock", "com.android.deskclock.DeskClock"},
        {"Moto Blur Alarm Clock", "com.motorola.blur.alarmclock",  "com.motorola.blur.alarmclock.AlarmClock"},
        {"Samsung Galaxy Clock", "com.sec.android.app.clockpackage","com.sec.android.app.clockpackage.ClockPackage"} ,
        {"Sony Ericsson Xperia Z", "com.sonyericsson.organizer", "com.sonyericsson.organizer.Organizer_WorldClock" },
        {"ASUS Tablets", "com.asus.deskclock", "com.asus.deskclock.DeskClock"}

};

boolean foundClockImpl = false;

for(int i=0; i<clockImpls.length; i++) {
    String vendor = clockImpls[i][0];
    String packageName = clockImpls[i][1];
    String className = clockImpls[i][2];
    try {
        ComponentName cn = new ComponentName(packageName, className);
        ActivityInfo aInfo = packageManager.getActivityInfo(cn, PackageManager.GET_META_DATA);
        alarmClockIntent.setComponent(cn);
        debug("Found " + vendor + " --> " + packageName + "/" + className);
        foundClockImpl = true;
    } catch (NameNotFoundException e) {
        debug(vendor + " does not exists");
    }
}

if (foundClockImpl) {
    PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, alarmClockIntent, 0);
        // add pending intent to your component
        // ....
}

这样,我可以运行一个默认的时钟管理器。

于 2010-11-25T22:22:58.633 回答
18

为了跟进 Mayra 的回答,该类android.provider.AlarmClock具有Intent此功能,但仅适用于 API 级别 9 及更高级别。(至少 Google 有人会听这样的请求!)

要从您的小部件启动时钟应用程序,请使用以下代码:

Intent openClockIntent = new Intent(AlarmClock.ACTION_SET_ALARM);
openClockIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(openClockIntent);

您还需要此权限:
<uses-permission android:name="com.android.alarm.permission.SET_ALARM"/>

于 2011-03-04T15:54:38.873 回答
6

从 api 级别 19 开始,您可以使用它在默认时钟应用程序上显示警报列表:

    Intent mClockIntent = new Intent(AlarmClock.ACTION_SHOW_ALARMS);
    mClockIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(mClockIntent);
于 2015-03-13T14:57:38.283 回答
4

在应用程序之外启动活动的正确方法是使用隐式意图。使用隐式意图,您无需提供特定的类来启动,而是指定其他应用程序可以选择执行的操作。

这是为了防止当另一个应用程序的创建者决定重命名他们的类时,你的应用程序被破坏。此外,它允许多个应用程序响应相同的操作。

有关隐式意图的更多详细信息,请参阅意图和意图过滤器。

不幸的是,您需要应用程序开发人员同意所有人实施特定操作才能使其正常工作。如果时钟应用程序没有这个,那么就没有很好的方法来完成你想要的。

我建议不要尝试像您那样创建一个巨大的 if 语句,因为该应用程序可能不仅与不同的 sdk 版本不同,而且与不同的手机不同,因为手机制造商可以选择替换应用程序。因此,如果您依赖能够打开时钟应用程序,您的应用程序将不断在新手机上出现问题。

于 2010-08-28T17:02:03.773 回答
2

代码:

            Intent i = new Intent(AlarmClock.ACTION_SET_ALARM);
            i.putExtra(AlarmClock.EXTRA_MESSAGE, "Alarm Title");
            ArrayList<Integer> alarmDays = new ArrayList<>();
            alarmDays.add(Calendar.SATURDAY);
            alarmDays.add(Calendar.SUNDAY);
            alarmDays.add(Calendar.MONDAY);
            alarmDays.add(Calendar.TUESDAY);
            alarmDays.add(Calendar.WEDNESDAY);
            alarmDays.add(Calendar.THURSDAY);
            alarmDays.add(Calendar.FRIDAY);
            i.putExtra(AlarmClock.EXTRA_DAYS, alarmDays);
            i.putExtra(AlarmClock.EXTRA_VIBRATE, true);
            i.putExtra(AlarmClock.EXTRA_HOUR, 10);
            i.putExtra(AlarmClock.EXTRA_MINUTES, 21);
            startActivity(i);

允许:

<uses-permission android:name="com.android.alarm.permission.SET_ALARM" />
于 2017-07-11T10:24:20.373 回答
1

Small addition for frusso answer. To launch Alarm Clock on Google Galaxy Nexus phones:

{"Standar Alarm Clock2", "com.google.android.deskclock", "com.android.deskclock.AlarmClock"},

in other cases will be launched Clock application instead of Alarm Clock

于 2012-08-26T14:03:17.900 回答
1

@Mayra 是对的。就是这样。但是,本机时钟应用程序没有注册的意图,也没有使用意图过滤器。我认为除了系统偏好之外,没有本机应用程序可以打开它。

此外,本机时钟应用程序在不同的手机上不可用,甚至根本不可用。这甚至超出了 SDK 版本控制。所以真的没有(好的)方法让你打开。

最好的办法是在 source.android.com 上提交一个补丁,为时钟应用程序提供一个意图过滤器,然后在http://www.openintents.org/en/intentstable上注册意图。至少那时您的应用程序可以在一部分设备上运行,并且在其他设备上完全失败(也就是说找不到这样的应用程序来处理意图)。

于 2010-09-26T18:07:32.440 回答
-1

你可以加

{ "Sony Ericsson Xperia Z", "com.sonyericsson.organizer", "com.sonyericsson.organizer.Organizer_WorldClock" }

frusso 回答以支持新的 Xperia 手机。

于 2013-11-23T21:15:45.497 回答