在Android WebAppInterface中传递对象

时间:2014-09-13 13:41:03

标签: java android json android-webview gson

我想通过WebAppInterface创建可用的Card对象列表,但我只在WebView端获得一个空的Json对象。我的脏解决方法是将其传递给JSON,在webview中对其进行解码。什么是正确的方式?

// not working:
@JavascriptInterface
public List<Card> getCards() { return cards; }

// dirty:
@JavascriptInterface
public String getCards() { return gson.toJson(cards); }

0 个答案:

没有答案