14

我想从StatusBarNotification-object 中获取尽可能多的信息。现在,唯一可以访问的“可靠”信息是tickerText-property。我正在使用以下代码通过 获取通知的标题和文本RemoteViews,但很多时候,标题和/或文本将只是 null :-(:

    //Get the title and text
    String mTitle = "";
    String mText = "";
    try {
        RemoteViews remoteView = sbn.getNotification().contentView;
        LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        ViewGroup localView = (ViewGroup) inflater.inflate(remoteView.getLayoutId(), null);
        remoteView.reapply(getApplicationContext(), localView);
        TextView tvTitle = (TextView) localView.findViewById(android.R.id.title);
        TextView tvText = (TextView) localView.findViewById(16908358);
        mTitle = (String)tvTitle.getText();
        mText = (String)tvText.getText();
    } catch (Exception e){
        Log.e(TAG, "Error getting notification title/text: " + e);
    }

有没有其他(更可靠)的方法?我可以为“流行”通知(如 Gmail、SMS 等)“手动编码”资源 ID,但这可能会在这些应用程序更新时随时中断。谢谢!

4

2 回答 2

4

使用 Android 4.4(KitKat),API 级别 19,您可以使用 Notification.extras 属性获取通知标题、文本、....

http://gmariotti.blogspot.com/2013/11/notificationlistenerservice-and-kitkat.html

于 2013-12-03T07:16:15.717 回答
3

检查资源 ID 实际上是 Android 屏幕阅读器 TalkBack 解析通知类型的方式。它尝试直接从各种包中加载 ID。

查看Google Code 上的源代码以获取完整示例。这是一个片段:

private static int ICON_GMAIL;

private static boolean sHasLoadedIcons = false;

private static void loadIcons(Context context) {
    ...

    ICON_GMAIL = loadIcon(context, "com.google.android.gm",
        "com.google.android.gm.R$drawable", "stat_notify_email");

    sHasLoadedIcons = true;
}

public static NotificationType getNotificationTypeFromIcon(Context context, int icon) {
    if (!sHasLoadedIcons) {
        loadIcons(context);
    }

    ...

    if (icon == ICON_GMAIL) {
        return NotificationType.EMAIL;
    }
}
于 2013-08-29T05:03:43.920 回答