Android Open Source - Palette L






From Project

Back to project page Palette.

License

The source code is released under:

GNU General Public License

If you think the Android project Palette listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.fiskur.palette;
//w ww.  j  a va2 s  .c  o m
import android.util.Log;

public class L {
  
  private static final String TAG = "Palette";
  
  public static void l(String message){
    Log.d(TAG, message);
  }
  
  public static void l(String tag, String message){
    Log.d(tag, message);
  }
  
  public static void e(String message){
    Log.e(TAG, message);
  }
  
  public static void e(String tag, String message){
    Log.e(tag, message);
  }
}




Java Source Code List

com.fiskur.palette.L.java
com.fiskur.palette.MainActivity.java
com.fiskur.palette.PhotoHelper.java