我的app文件夹中有一个类,我想从我添加的库中调用,我遇到了困难。我该怎么办?我尝试使用接口,但最终得到了无休止递归的java.lang.StackOverflowError。我如何实现这个https://stackoverflow.com/a/7957291/3729302?我无法移动Util类,因为它主要需要很多文件
主文件夹中的类
public class Utils {
public Bundle getDatabase() {
//code ....
Bundle bundle = new Bundle();
bundle.putStringArrayList("arraylist", array);
bundle.putString(KEY_TITLE, "Gallery");
return bundle;
}
库文件夹中的方法......
....
public void upload() {
OkHttpClient client = new OkHttpClient();
Bundle bundle = Utils.getDatabase(); //error here