0

我一直在参考这个应用程序来制作画廊模块
https://github.com/nostra13/Android-Universal-Image-Loader

但是根据我的应用程序中的要求,图像是动态添加的。因此,我通过 JSON 获取所有图像。来自 JSON 的图像响应将添加到数组列表中。

我应该如何image_urls.add(folio.getString(i));在新班级中通过“”:

public class Test extends Activity{

    private static String url = "http://www.xyz.com/album_pro/array_to_encode";

     JSONArray folio = null;
     ArrayList<String> urlList = new ArrayList<String>();
     @SuppressLint("NewApi")
    public void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);

            StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
              StrictMode.setThreadPolicy(policy);

            JSONParser jParser = new JSONParser();
            {

            try{

                JSONObject json = jParser.getJSONFromUrl(url);
                Log.v("URL",json.toString());

            JSONObject seo = json.getJSONObject("SEO");
            Log.v("seo",seo.toString());
            JSONArray folio = seo.getJSONArray("Folio");
            ArrayList<String> image_urls = new ArrayList<String>();

            for(int i=0;i< folio.length();i++)
            {

                image_urls.add(folio.getString(i));

            }


            }
            catch(Exception e)
            {
                e.printStackTrace();
            }
            }
}

}

image_urls.add(folio.getString(i));我应该如何在名为“Images”的非活动类中传递“ ”,即

public class Images {
    public final static String[] imageUrls = new String[] {
      **Required the arraylist of "Test" activity**

    };
    public final static String[] imageThumbUrls = new String[] {

         **Required the arraylist of "Test" activity**
    };

}
4

3 回答 3

1

使Images成员成为非最终成员,以便您可以在运行时设置它们。

image_urls在将图像 URL 添加到ArrayList的循环之后,设置Images类的属性:

Images.imageUrls = image_urls.toArray();
于 2013-03-04T11:35:02.797 回答
1

制作ArrayList publicandstatic并在其他类中使用它Test.urlList

于 2013-03-04T11:31:22.767 回答
0

简单的方法是使image_urlsas public 静态。因为它只包含网址,对吗?只有少量数据,并且在 Image 类中使用

Test.image_urls.get(integer);
于 2013-03-04T11:32:41.123 回答