在Android中将地图转换为捆绑包

在Android中将地图转换为捆绑包

本文介绍了在Android中将地图转换为捆绑包的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

有没有一个简单的方法来转换一个地图到一个捆绑在android没有明确的迭代?

为什么?
$ b Firebase返回通知地图的getData()。我需要将数据传递给一个意图。以前GCM给了我一个捆绑包,所以我不用担心这个问题。 解决方案

循环是最简单的方法:

$ p $ Bundle bundle = new Bundle(); (Map.Entry< String,String> entry:getData()。entrySet()){
bundle.putString(entry.getKey(),entry.getValue());
}


Is there an easy way to convert a Map to a Bundle in android without explicit iteration?

Why?

Firebase returns a Map for Notification getData(). I need to pass the data to an intent. Formerly GCM gave me a bundle, so I didn't need to worry about this.

解决方案

I guess a good old fashioned for loop is the easiest way:

    Bundle bundle = new Bundle();
    for (Map.Entry<String, String> entry : getData().entrySet()) {
        bundle.putString(entry.getKey(), entry.getValue());
    }

这篇关于在Android中将地图转换为捆绑包的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-06 15:00