Back to project page photo-share-android.
The source code is released under:
Apache License
If you think the Android project photo-share-android listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.project.photoshare.utils; /* w w w. j av a2 s .c o m*/ import android.util.Log; import org.json.JSONException; import org.json.JSONObject; import java.util.Iterator; import java.util.List; import java.util.Map; /** * Helper class for logging stuffs. You can see the logs on Logcat. * * @author <a href="mailto:">TakuyaKodama</a> (kodama-t) * @version 1.00 14/02/06 kodama-t */ public class LogHelper { public static void logHashList(List<Map<String, String>> hashMapList) { for(int i = 0; i < hashMapList.size(); i++) { Log.i("map", i + ": "); Iterator<String> iterator = hashMapList.get(i).keySet().iterator(); String key; while (iterator.hasNext()) { key = iterator.next(); Log.i(key, hashMapList.get(i).get(key)); } } } public static void logJsonString(String tag, JSONObject jsonObject) { try { Log.d(tag, jsonObject.toString(4)); } catch (JSONException e) { e.printStackTrace(); } } }