我想通过WebAppInterface创建可用的Card对象列表,但我只在WebView端获得一个空的Json对象。我的脏解决方法是将其传递给JSON,在webview中对其进行解码。什么是正确的方式?
// not working:
@JavascriptInterface
public List<Card> getCards() { return cards; }
// dirty:
@JavascriptInterface
public String getCards() { return gson.toJson(cards); }