【问题标题】:Shortcuts for Nougat versionNougat 版本的快捷方式
【发布时间】:2016-12-20 15:14:25
【问题描述】:

当我尝试在 Intent 包中传递 Serializable 时,我遇到了这个致命的异常,我认为这与我尝试实现的牛轧糖快捷方式有关。这里有一个例外:

12-16 16:17:32.972 20461-20461/***.****.******.debug E/AndroidRuntime: FATAL EXCEPTION: main
Process: ***.****.******.debug, PID: 20461
java.lang.IllegalArgumentException: Bad value in PersistableBundle key=shortcutId value=***.****.******.common.cta.CtaAccountSectionModel@1fb70dc
at android.os.PersistableBundle.<init>(PersistableBundle.java:124)
at android.os.PersistableBundle.<init>(PersistableBundle.java:98)
at android.content.pm.ShortcutInfo.fixUpIntentExtras(ShortcutInfo.java:267)
at android.content.pm.ShortcutInfo.<init>(ShortcutInfo.java:245)
 at android.content.pm.ShortcutInfo.<init>(ShortcutInfo.java)
 at android.content.pm.ShortcutInfo$Builder.build(ShortcutInfo.java:1027)
 at ****.******.***.ShortcutHelper.createShortcut(ShortcutHelper.java:79)
 at ****.******.***.ShortcutHelper.refreshShortcuts(ShortcutHelper.java:87)
 at ****.******.***.****.******.***.refreshShortcuts(Application.java:93)
 at ****.******.***.refreshShortcuts(SettingActivity.java:247)
 at ****.******.***.storeShortcuts(SettingActivity.java:242)
 at c****.******.***.access$800(SettingActivity.java:56)
 at ****.******.***.SettingActivity$2.onClick(SettingActivity.java:233)
 at android.view.View.performClick(View.java:5637)
 at android.view.View$PerformClick.run(View.java:22429)
 at android.os.Handler.handleCallback(Handler.java:751)
 at android.os.Handler.dispatchMessage(Handler.java:95)
 at android.os.Looper.loop(Looper.java:154)
 at android.app.ActivityThread.main(ActivityThread.java:6119)
 at java.lang.reflect.Method.invoke(Native Method)
 at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:886)
 at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:776)

CtaAccountSectionModel.class

public class CtaAccountSectionModel extends CtaModel implements Serializable         {
}

CtaModel.class

@JsonTypeInfo(
            use = JsonTypeInfo.Id.NAME,
            include = JsonTypeInfo.As.PROPERTY,
            defaultImpl = CtaDefaultModel.class,
            property = "action", visible = true)
    @JsonSubTypes({
            @JsonSubTypes.Type(value = CtaProductPageModel.class, name = CtaActionModel.ACTION_PRODUCT_PAGE))})


public class CtaModel implements Serializable {
   private String action;
   private String name;
    public String getAction() {
        return action;
    }

    public void setAction(String action) {
        this.action = action;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}

这里是我创建意图的代码:

public ShortcutBackStackBuilder getHistoryWithBackStack(String section) {
    Intent intent = IntentAppFactory.createMainActivityFromShortcut(mContext).putExtra(IntentExtraConstants.EXTRA_SHORTCUT_ID, new CtaAccountSectionModel(section))
        .setAction(Intent.ACTION_MAIN);

        mIntentLinkedList.add(intent);
        return this;
}

有人知道是否不允许在牛轧糖快捷方式中传递 Serializable 吗?

【问题讨论】:

    标签: android android-7.0-nougat android-7.1-nougat


    【解决方案1】:

    PersistableBundle 类使用以下方法检查其内容:

    public static boolean isValidType(Object value) {
        return (value instanceof Integer) || (value instanceof Long) ||
                (value instanceof Double) || (value instanceof String) ||
                (value instanceof int[]) || (value instanceof long[]) ||
                (value instanceof double[]) || (value instanceof String[]) ||
                (value instanceof PersistableBundle) || (value == null) ||
                (value instanceof Boolean) || (value instanceof boolean[]);
    }
    

    不幸的是,只有这些类可以捆绑到 Intent for Shortcuts 中。

    来源:PersistableBundle.java

    【讨论】:

    • 谢谢,我担心问题与此有关。无法将 Serializable 用于这些意图会使事情变得复杂......我所做的是将额外的值反序列化为 JSON 字符串(使用 Gson)。但这是我宁愿避免的黑客行为...... :(
    • 我遇到了与 Enums 相同的问题,并且无法将 Serializable 与 PersistableBundle 一起使用。谢谢
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2020-10-26
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多