图书馆主要课程的访问方法

时间:2016-07-19 09:17:35

标签: java android interface

我的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

0 个答案:

没有答案