Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将android中的数组传递给对象类型的Route属性。Route 属性是在 Open Graph 中为您的应用程序创建对象类型时的一个选项。我在任何地方都找不到这个!
路线应显示在地图布局中的 Facebook 时间线上。
谢谢!
马特
我的猜测和你的一样好,但是尝试使用 aJSONObject来构造一个兼容的数组:
JSONObject
JSONObject routeProperty = new JSONObject(); routeProperty.put("Cat"); routeProperty.put("Dog");
然后调用routeProperty.toString()将其传递给您的对象的参数或选项。
routeProperty.toString()