【发布时间】:2017-01-02 21:37:20
【问题描述】:
我有一个 kotlin 库 FlowLayout lib as aar,
并想在我的 java 代码 (android) 中使用它但无法解析 kotlin.Pair。
FlowLayoutManager layoutManager=new FlowLayoutManager(3, RecyclerView.HORIZONTAL, new FlowLayoutManager.Interface() {
@Override
public kotlin.Pair<Integer, Integer> getProportionalSizeForChild(int i) {
return null;
}
});
我试过android.support.v4.util.Pair 但不兼容。如何在 java 代码中使用 kotlin 库及其对象依赖项?
【问题讨论】:
-
您的 Java 项目中是否依赖于 Kotlin 库(不记得工件名称,因为他们一直在更改它,但可能是核心)?
标签: java android compatibility kotlin aar